Skip to content

Commit d52830a

Browse files
authored
Update arrays.rs (#253)
fix a typo
1 parent d15ea43 commit d52830a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linalg/basic/arrays.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1570,7 +1570,7 @@ pub trait Array2<T: Debug + Display + Copy + Sized>: MutArrayView2<T> + Sized +
15701570
mean
15711571
}
15721572

1573-
/// copy coumn as a vector
1573+
/// copy column as a vector
15741574
fn copy_col_as_vec(&self, col: usize, result: &mut Vec<T>) {
15751575
for (r, result_r) in result.iter_mut().enumerate().take(self.shape().0) {
15761576
*result_r = *self.get((r, col));

0 commit comments

Comments
 (0)