File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 44
44
//! - Performance:
45
45
//! + Prefer higher order methods and arithmetic operations on arrays first,
46
46
//! then iteration, and as a last priority using indexed algorithms.
47
- //! + The higher order functions like ``.map()``, ``.map_inplace()``,
47
+ //! + The higher order functions like ``.map()``, ``.map_inplace()``,
48
48
//! ``.zip_mut_with()``, ``Zip`` and ``azip!()`` are the most efficient ways
49
49
//! to perform single traversal and lock step traversal respectively.
50
50
//! + Performance of an operation depends on the memory layout of the array
@@ -239,7 +239,7 @@ pub type Ixs = isize;
239
239
///
240
240
/// ## `Array`
241
241
///
242
- /// [`Array`](type.Array.html) is an owned array that ows the underlying array
242
+ /// [`Array`](type.Array.html) is an owned array that owns the underlying array
243
243
/// elements directly (just like a `Vec`) and it is the default way to create and
244
244
/// store n-dimensional data. `Array<A, D>` has two type parameters: `A` for
245
245
/// the element type, and `D` for the dimensionality. A particular
@@ -380,7 +380,7 @@ pub type Ixs = isize;
380
380
/// axis to traverse.
381
381
///
382
382
/// The `outer_iter` and `axis_iter` are one dimensional producers.
383
- ///
383
+ ///
384
384
/// ## `.genrows()`, `.gencolumns()` and `.lanes()`
385
385
///
386
386
/// [`.genrows()`][gr] is a producer (and iterable) of all rows in an array.
You can’t perform that action at this time.
0 commit comments