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 4444//! - Performance:
4545//! + Prefer higher order methods and arithmetic operations on arrays first,
4646//! 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()``,
4848//! ``.zip_mut_with()``, ``Zip`` and ``azip!()`` are the most efficient ways
4949//! to perform single traversal and lock step traversal respectively.
5050//! + Performance of an operation depends on the memory layout of the array
@@ -239,7 +239,7 @@ pub type Ixs = isize;
239239///
240240/// ## `Array`
241241///
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
243243/// elements directly (just like a `Vec`) and it is the default way to create and
244244/// store n-dimensional data. `Array<A, D>` has two type parameters: `A` for
245245/// the element type, and `D` for the dimensionality. A particular
@@ -380,7 +380,7 @@ pub type Ixs = isize;
380380/// axis to traverse.
381381///
382382/// The `outer_iter` and `axis_iter` are one dimensional producers.
383- ///
383+ ///
384384/// ## `.genrows()`, `.gencolumns()` and `.lanes()`
385385///
386386/// [`.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