Skip to content

Commit f57800d

Browse files
committed
---
yaml --- r: 109558 b: refs/heads/snap-stage3 c: edc7ad1 h: refs/heads/master v: v3
1 parent ce98e68 commit f57800d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: b8ef9fd9c9f642ce7b8aed82782a1ed745d08d64
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: d79fbba0db84b2d27440f8feba715dffd3aeaa01
4+
refs/heads/snap-stage3: edc7ad162cc8228d3d0104c1d0be92f9c43eabb2
55
refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libcollections/deque.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Container traits for extra
11+
//! Container traits for collections
1212
1313
use std::container::Mutable;
1414

branches/snap-stage3/src/libcollections/dlist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! The DList allows pushing and popping elements at either end.
1414
//!
1515
//! DList implements the trait Deque. It should be imported with `use
16-
//! extra::container::Deque`.
16+
//! collections::deque::Deque`.
1717
1818

1919
// DList is constructed like a singly-linked list over the field `next`.

branches/snap-stage3/src/libcollections/ringbuf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! A double-ended queue implemented as a circular buffer
1212
//!
1313
//! RingBuf implements the trait Deque. It should be imported with `use
14-
//! extra::container::Deque`.
14+
//! collections::deque::Deque`.
1515
1616
use std::cmp;
1717
use std::slice;

0 commit comments

Comments
 (0)