Skip to content

DOC: Fix spelling and white space in docstrings #447

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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