about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorDaan Sprenkels <dsprenkels@gmail.com>2016-06-19 14:23:30 +0200
committerDaan Sprenkels <dsprenkels@gmail.com>2016-06-19 14:25:15 +0200
commit223cd210230a2bc2769320a52a159666167c4b3c (patch)
treead4cf71db5476aa4b3c2de28609fc8be14c1f003 /src/libcore
parent3313e50594aeb8e81dbe7bac27addcf41be40f9c (diff)
downloadrust-223cd210230a2bc2769320a52a159666167c4b3c.tar.gz
rust-223cd210230a2bc2769320a52a159666167c4b3c.zip
doc: std::ops md formatting fix
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/ops.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/ops.rs b/src/libcore/ops.rs
index 5e1210b2ff9..7258c8a1b6b 100644
--- a/src/libcore/ops.rs
+++ b/src/libcore/ops.rs
@@ -1608,6 +1608,7 @@ impl<Idx: PartialOrd<Idx>> RangeFrom<Idx> {
 /// See the [`contains()`](#method.contains) method for its characterization.
 ///
 /// It cannot serve as an iterator because it doesn't have a starting point.
+///
 /// ```
 /// fn main() {
 ///     assert_eq!((..5), std::ops::RangeTo{ end: 5 });