Skip to content

Commit 4dc8aa2

Browse files
committed
Edit docs
1 parent 9832287 commit 4dc8aa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ pub type Ixs = isize;
239239
/// for a 1D array, `Ix2` for a 2D array etc. The dimension type `IxDyn` allows
240240
/// a dynamic number of axes.
241241
///
242-
/// An array of the corresponding dimensionality is used to index the array,
243-
/// making the syntax `array[[` i, j, ...`]]`
242+
/// A fixed size array (`[usize; N]`) of the corresponding dimensionality is
243+
/// used to index the `Array`, making the syntax `array[[` i, j, ...`]]`
244244
///
245245
/// ```
246246
/// use ndarray::Array2;

0 commit comments

Comments
 (0)