Skip to content

Commit 0a899c7

Browse files
committed
DOC: Fix doc renderer warnings
1 parent dde6f94 commit 0a899c7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! Each dimension is also called an *axis*.
1818
//!
1919
//! - [**`ArrayBase`**](struct.ArrayBase.html):
20-
//! The *n*-dimensional array type itself.<br>
20+
//! The *n*-dimensional array type itself.
2121
//! It is used to implement both the owned arrays and the views; see its docs
2222
//! for an overview of all array features.
2323
//! - The main specific array type is [**`Array`**](type.Array.html), which owns
@@ -427,6 +427,7 @@ pub type Ixs = isize;
427427
/// The slicing argument can be passed using the macro [`s![]`](macro.s!.html),
428428
/// which will be used in all examples. (The explicit form is a reference
429429
/// to a fixed size array of [`Si`]; see its docs for more information.)
430+
///
430431
/// [`Si`]: struct.Si.html
431432
///
432433
/// ```

src/si.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ use super::Ixs;
3838
/// Macro equivalent is `s![a..;-1]`.
3939
///
4040
/// The constant [`S`] is a shorthand for the full range of an axis.
41+
///
4142
/// [`S`]: constant.S.html
4243
pub struct Si(pub Ixs, pub Option<Ixs>, pub Ixs);
4344

0 commit comments

Comments
 (0)