about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-06-21 23:54:28 +0200
committerGitHub <noreply@github.com>2016-06-21 23:54:28 +0200
commit469d17c2a8273b7e11237e160392186f428bdc95 (patch)
tree3c1f3ca701c96f6eb91e2aac627997d43873743a /src/libcore
parent3f43b0168182aa970390004aaad08f73f2915a7e (diff)
parent223cd210230a2bc2769320a52a159666167c4b3c (diff)
downloadrust-469d17c2a8273b7e11237e160392186f428bdc95.tar.gz
rust-469d17c2a8273b7e11237e160392186f428bdc95.zip
Rollup merge of #34360 - dsprenkels:ops-doc, r=apasel422
Markdown formatting fix

This pull request fixes some bad markdown formatting in the[ `std::ops::RangeTo` documentation](https://doc.rust-lang.org/std/ops/struct.RangeTo.html):

![screenshot from 2016-06-19 14 29 21](https://cloud.githubusercontent.com/assets/439973/16177354/5439a9bc-362a-11e6-97e5-374fd0bcf5a2.png)
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 });