Skip to content

Commit

Permalink
Merge pull request rust-ndarray#447 from danmack/doc-spelling-fix
Browse files Browse the repository at this point in the history
DOC: Fix spelling and white space in docstrings
  • Loading branch information
jturner314 authored May 9, 2018
2 parents 98d20ef + 532d557 commit 6d2eb5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
//! - Performance:
//! + Prefer higher order methods and arithmetic operations on arrays first,
//! then iteration, and as a last priority using indexed algorithms.
//! + The higher order functions like ``.map()``, ``.map_inplace()``,
//! + The higher order functions like ``.map()``, ``.map_inplace()``,
//! ``.zip_mut_with()``, ``Zip`` and ``azip!()`` are the most efficient ways
//! to perform single traversal and lock step traversal respectively.
//! + Performance of an operation depends on the memory layout of the array
Expand Down Expand Up @@ -239,7 +239,7 @@ pub type Ixs = isize;
///
/// ## `Array`
///
/// [`Array`](type.Array.html) is an owned array that ows the underlying array
/// [`Array`](type.Array.html) is an owned array that owns the underlying array
/// elements directly (just like a `Vec`) and it is the default way to create and
/// store n-dimensional data. `Array<A, D>` has two type parameters: `A` for
/// the element type, and `D` for the dimensionality. A particular
Expand Down Expand Up @@ -380,7 +380,7 @@ pub type Ixs = isize;
/// axis to traverse.
///
/// The `outer_iter` and `axis_iter` are one dimensional producers.
///
///
/// ## `.genrows()`, `.gencolumns()` and `.lanes()`
///
/// [`.genrows()`][gr] is a producer (and iterable) of all rows in an array.
Expand Down

0 comments on commit 6d2eb5e

Please sign in to comment.