@@ -341,15 +341,15 @@ pub type Ixs = isize;
341
341
///
342
342
/// Important traits and types for dimension and indexing:
343
343
///
344
- /// - A [`Dim`](Dim.t .html) value represents a dimensionality or index.
345
- /// - Trait [`Dimension`](Dimension.t .html) is implemented by all
344
+ /// - A [`Dim`](struct.Dim .html) value represents a dimensionality or index.
345
+ /// - Trait [`Dimension`](trait.Dimension .html) is implemented by all
346
346
/// dimensionalities. It defines many operations for dimensions and indices.
347
- /// - Trait [`IntoDimension`](IntoDimension.t .html) is used to convert into a
347
+ /// - Trait [`IntoDimension`](trait.IntoDimension .html) is used to convert into a
348
348
/// `Dim` value.
349
- /// - Trait [`ShapeBuilder`](ShapeBuilder.t .html) is an extension of
349
+ /// - Trait [`ShapeBuilder`](trait.ShapeBuilder .html) is an extension of
350
350
/// `IntoDimension` and is used when constructing an array. A shape describes
351
351
/// not just the extent of each axis but also their strides.
352
- /// - Trait [`NdIndex`](NdIndex.t .html) is an extension of `Dimension` and is
352
+ /// - Trait [`NdIndex`](trait.NdIndex .html) is an extension of `Dimension` and is
353
353
/// for values that can be used with indexing syntax.
354
354
///
355
355
///
@@ -1289,10 +1289,10 @@ pub type ArcArray<A, D> = ArrayBase<OwnedArcRepr<A>, D>;
1289
1289
/// + [Constructor Methods for Owned Arrays](struct.ArrayBase.html#constructor-methods-for-owned-arrays)
1290
1290
/// + [Methods For All Array Types](struct.ArrayBase.html#methods-for-all-array-types)
1291
1291
/// + Dimensionality-specific type alises
1292
- /// [`Array1`](Array1.t .html),
1293
- /// [`Array2`](Array2.t .html),
1294
- /// [`Array3`](Array3.t .html), ...,
1295
- /// [`ArrayD`](ArrayD.t .html),
1292
+ /// [`Array1`](type.Array1 .html),
1293
+ /// [`Array2`](type.Array2 .html),
1294
+ /// [`Array3`](type.Array3 .html), ...,
1295
+ /// [`ArrayD`](type.ArrayD .html),
1296
1296
/// and so on.
1297
1297
pub type Array < A , D > = ArrayBase < OwnedRepr < A > , D > ;
1298
1298
0 commit comments