File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 17
17
//! Each dimension is also called an *axis*.
18
18
//!
19
19
//! - [**`ArrayBase`**](struct.ArrayBase.html):
20
- //! The *n*-dimensional array type itself.<br>
20
+ //! The *n*-dimensional array type itself.
21
21
//! It is used to implement both the owned arrays and the views; see its docs
22
22
//! for an overview of all array features.
23
23
//! - The main specific array type is [**`Array`**](type.Array.html), which owns
@@ -427,6 +427,7 @@ pub type Ixs = isize;
427
427
/// The slicing argument can be passed using the macro [`s![]`](macro.s!.html),
428
428
/// which will be used in all examples. (The explicit form is a reference
429
429
/// to a fixed size array of [`Si`]; see its docs for more information.)
430
+ ///
430
431
/// [`Si`]: struct.Si.html
431
432
///
432
433
/// ```
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ use super::Ixs;
38
38
/// Macro equivalent is `s![a..;-1]`.
39
39
///
40
40
/// The constant [`S`] is a shorthand for the full range of an axis.
41
+ ///
41
42
/// [`S`]: constant.S.html
42
43
pub struct Si ( pub Ixs , pub Option < Ixs > , pub Ixs ) ;
43
44
You can’t perform that action at this time.
0 commit comments