Skip to content

Commit 74496ae

Browse files
committed
Bug fixed
1 parent b3dd41c commit 74496ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/matrix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl<A> Matrix for Array<A, Ix2>
4646
where A: ImplQR + ImplSVD + ImplNorm + ImplSolve + LinalgScalar + Debug
4747
{
4848
type Scalar = A;
49-
type Vector = Array<A, Ix>;
49+
type Vector = Array<A, Ix1>;
5050
type Permutator = Vec<i32>;
5151

5252
fn size(&self) -> (usize, usize) {

0 commit comments

Comments
 (0)