diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-06-21 23:54:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-21 23:54:28 +0200 |
| commit | 469d17c2a8273b7e11237e160392186f428bdc95 (patch) | |
| tree | 3c1f3ca701c96f6eb91e2aac627997d43873743a /src/libcore | |
| parent | 3f43b0168182aa970390004aaad08f73f2915a7e (diff) | |
| parent | 223cd210230a2bc2769320a52a159666167c4b3c (diff) | |
| download | rust-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): 
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/ops.rs | 1 |
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 }); |
