Skip to content

Commit d026067

Browse files
committed
Edit link to array view methods
1 parent 238784b commit d026067

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ pub type OwnedArray<A, D> = ArrayBase<Vec<A>, D>;
437437
///
438438
/// Array views have all the methods of an array (see [`ArrayBase`][ab]).
439439
///
440-
/// See also specific [**Methods for Array Views**](struct.ArrayBase.html#methods-for-array-views).
440+
/// See also [**Methods Specific To Array Views**](struct.ArrayBase.html#methods-specific-to-array-views)
441441
///
442442
/// [ab]: struct.ArrayBase.html
443443
pub type ArrayView<'a, A, D> = ArrayBase<ViewRepr<&'a A>, D>;
@@ -448,7 +448,7 @@ pub type ArrayView<'a, A, D> = ArrayBase<ViewRepr<&'a A>, D>;
448448
///
449449
/// Array views have all the methods of an array (see [`ArrayBase`][ab]).
450450
///
451-
/// See also specific [**Methods for Array Views**](struct.ArrayBase.html#methods-for-array-views).
451+
/// See also [**Methods Specific To Array Views**](struct.ArrayBase.html#methods-specific-to-array-views)
452452
///
453453
/// [ab]: struct.ArrayBase.html
454454
pub type ArrayViewMut<'a, A, D> = ArrayBase<ViewRepr<&'a mut A>, D>;

0 commit comments

Comments
 (0)