Skip to content

Commit 5b8f6de

Browse files
committed
DOC: Fix .len() -> len in another AxisDescription example
1 parent e5d4bf7 commit 5b8f6de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ pub type Ixs = isize;
596596
/// S::Elem: Clone,
597597
/// D: Dimension,
598598
/// {
599-
/// arr.slice_each_axis_mut(|ax| Slice::from(0..ax.len() / 2)).fill(x);
599+
/// arr.slice_each_axis_mut(|ax| Slice::from(0..ax.len / 2)).fill(x);
600600
/// }
601601
/// fill_lower(&mut h, 9);
602602
/// let k = arr2(&[[9, 9, 2, 3],

0 commit comments

Comments
 (0)