Skip to content

Add headings for more sections in ArrayBase docs #531

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
Nov 11, 2018
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/impl_1d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//! Methods for one-dimensional arrays.
use imp_prelude::*;

/// # Methods For 1-D Arrays
impl<A, S> ArrayBase<S, Ix1>
where S: Data<Elem=A>,
{
Expand Down
1 change: 1 addition & 0 deletions src/impl_2d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//! Methods for two-dimensional arrays.
use imp_prelude::*;

/// # Methods For 2-D Arrays
impl<A, S> ArrayBase<S, Ix2>
where S: Data<Elem=A>,
{
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@ pub type Ixs = isize;
/// + [Conversions Between Array Types](#conversions-between-array-types)
/// + [Constructor Methods for Owned Arrays](#constructor-methods-for-owned-arrays)
/// + [Methods For All Array Types](#methods-for-all-array-types)
///
/// + [Methods For 1-D Arrays](#methods-for-1-d-arrays)
/// + [Methods For 2-D Arrays](#methods-for-2-d-arrays)
/// + [Numerical Methods for Arrays](#numerical-methods-for-arrays)
///
/// ## `Array`
///
Expand Down
2 changes: 1 addition & 1 deletion src/numeric/impl_numeric.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use numeric_util;

use {FoldWhile, Zip};

/// Numerical methods for arrays.
/// # Numerical Methods for Arrays
impl<A, S, D> ArrayBase<S, D>
where S: Data<Elem=A>,
D: Dimension,
Expand Down