Skip to content

Commit 6b15205

Browse files
treemanalexcrichton
authored andcommitted
---
yaml --- r: 132038 b: refs/heads/dist-snap c: 71afdc4 h: refs/heads/master v: v3
1 parent 3bac076 commit 6b15205

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 457a3c991d79b971be07fce75f9d0c12848fb37c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 4574b2fbaa866fbe73224f57981151aab1f1f15b
9+
refs/heads/dist-snap: 71afdc4323773b1351e7ddccecdfeec2b65e932f
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libcollections/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ pub trait Deque<T> : Mutable {
423423
/// ```
424424
fn front_mut<'a>(&'a mut self) -> Option<&'a mut T>;
425425

426-
/// Provide a reference to the back element, or None if the sequence is
426+
/// Provide a reference to the back element, or `None` if the sequence is
427427
/// empty.
428428
///
429429
/// # Example
@@ -440,7 +440,7 @@ pub trait Deque<T> : Mutable {
440440
/// ```
441441
fn back<'a>(&'a self) -> Option<&'a T>;
442442

443-
/// Provide a mutable reference to the back element, or None if the sequence
443+
/// Provide a mutable reference to the back element, or `None` if the sequence
444444
/// is empty.
445445
///
446446
/// # Example
@@ -487,7 +487,7 @@ pub trait Deque<T> : Mutable {
487487
/// assert_eq!(d.front(), Some(&1i));
488488
fn push_back(&mut self, elt: T);
489489

490-
/// Remove the last element and return it, or None if the sequence is empty.
490+
/// Remove the last element and return it, or `None` if the sequence is empty.
491491
///
492492
/// # Example
493493
///
@@ -503,7 +503,7 @@ pub trait Deque<T> : Mutable {
503503
/// assert_eq!(d.pop_back(), None);
504504
fn pop_back(&mut self) -> Option<T>;
505505

506-
/// Remove the first element and return it, or None if the sequence is empty.
506+
/// Remove the first element and return it, or `None` if the sequence is empty.
507507
///
508508
/// # Example
509509
///

0 commit comments

Comments
 (0)