Skip to content

Commit 174ca76

Browse files
joelchenadamreichold
authored andcommitted
Update README-quick-start.md
Fix typo
1 parent fa57078 commit 174ca76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README-quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ fn main() {
170170
println!("b shape {:?}", &b.shape());
171171

172172
let b = b.into_shape((4,1)).unwrap(); // reshape b to shape [4, 1]
173-
println!("b shape {:?}", &b.shape());
173+
println!("b shape after reshape {:?}", &b.shape());
174174

175175
println!("{}", a.dot(&b)); // [1, 4] x [4, 1] -> [1, 1]
176176
println!("{}", a.t().dot(&b.t())); // [4, 1] x [1, 4] -> [4, 4]

0 commit comments

Comments
 (0)