Skip to content
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

fix a few links in doc #751

Merged
merged 1 commit into from
Nov 11, 2019
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
2 changes: 1 addition & 1 deletion src/dimension/dim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use crate::Ix;
/// `Dim` describes the number of axes and the length of each axis
/// in an array. It is also used as an index type.
///
/// See also the [`Dimension` trait](Dimension.t.html) for its methods and
/// See also the [`Dimension` trait](trait.Dimension.html) for its methods and
/// operations.
///
/// # Examples
Expand Down
18 changes: 9 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,15 +341,15 @@ pub type Ixs = isize;
///
/// Important traits and types for dimension and indexing:
///
/// - A [`Dim`](Dim.t.html) value represents a dimensionality or index.
/// - Trait [`Dimension`](Dimension.t.html) is implemented by all
/// - A [`Dim`](struct.Dim.html) value represents a dimensionality or index.
/// - Trait [`Dimension`](trait.Dimension.html) is implemented by all
/// dimensionalities. It defines many operations for dimensions and indices.
/// - Trait [`IntoDimension`](IntoDimension.t.html) is used to convert into a
/// - Trait [`IntoDimension`](trait.IntoDimension.html) is used to convert into a
/// `Dim` value.
/// - Trait [`ShapeBuilder`](ShapeBuilder.t.html) is an extension of
/// - Trait [`ShapeBuilder`](trait.ShapeBuilder.html) is an extension of
/// `IntoDimension` and is used when constructing an array. A shape describes
/// not just the extent of each axis but also their strides.
/// - Trait [`NdIndex`](NdIndex.t.html) is an extension of `Dimension` and is
/// - Trait [`NdIndex`](trait.NdIndex.html) is an extension of `Dimension` and is
/// for values that can be used with indexing syntax.
///
///
Expand Down Expand Up @@ -1289,10 +1289,10 @@ pub type ArcArray<A, D> = ArrayBase<OwnedArcRepr<A>, D>;
/// + [Constructor Methods for Owned Arrays](struct.ArrayBase.html#constructor-methods-for-owned-arrays)
/// + [Methods For All Array Types](struct.ArrayBase.html#methods-for-all-array-types)
/// + Dimensionality-specific type alises
/// [`Array1`](Array1.t.html),
/// [`Array2`](Array2.t.html),
/// [`Array3`](Array3.t.html), ...,
/// [`ArrayD`](ArrayD.t.html),
/// [`Array1`](type.Array1.html),
/// [`Array2`](type.Array2.html),
/// [`Array3`](type.Array3.html), ...,
/// [`ArrayD`](type.ArrayD.html),
/// and so on.
pub type Array<A, D> = ArrayBase<OwnedRepr<A>, D>;

Expand Down