Skip to content

Commit 6d2eb5e

Browse files
authored
Merge pull request rust-ndarray#447 from danmack/doc-spelling-fix
DOC: Fix spelling and white space in docstrings
2 parents 98d20ef + 532d557 commit 6d2eb5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
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.

0 commit comments

Comments
 (0)