We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9832287 commit 4dc8aa2Copy full SHA for 4dc8aa2
src/lib.rs
@@ -239,8 +239,8 @@ pub type Ixs = isize;
239
/// for a 1D array, `Ix2` for a 2D array etc. The dimension type `IxDyn` allows
240
/// a dynamic number of axes.
241
///
242
-/// An array of the corresponding dimensionality is used to index the array,
243
-/// making the syntax `array[[` i, j, ...`]]`
+/// A fixed size array (`[usize; N]`) of the corresponding dimensionality is
+/// used to index the `Array`, making the syntax `array[[` i, j, ...`]]`
244
245
/// ```
246
/// use ndarray::Array2;
0 commit comments