about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-06-21 16:14:38 -0700
committerGitHub <noreply@github.com>2016-06-21 16:14:38 -0700
commitb8deebe3d678dcc65dce713e894544e234f1c474 (patch)
tree4f28b25e8fd567833c85761a58208d4298874e41 /src/libcore
parentfe96928d7de991e527a7ed7b88bb30aa965c8a08 (diff)
parent0db65750bc5e0f2ded19fa32ecc791aaf3dd1536 (diff)
downloadrust-b8deebe3d678dcc65dce713e894544e234f1c474.tar.gz
rust-b8deebe3d678dcc65dce713e894544e234f1c474.zip
Auto merge of #34402 - GuillaumeGomez:rollup, r=GuillaumeGomez
Rollup of 7 pull requests

- Successful merges: #34356, #34360, #34369, #34371, #34378, #34380, #34391
- Failed merges:
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 });