Skip to content

Commit b61d4e6

Browse files
committed
---
yaml --- r: 110288 b: refs/heads/try c: edc7ad1 h: refs/heads/master v: v3
1 parent 6f1ac10 commit b61d4e6

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
@@ -2,7 +2,7 @@
22
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c7fac4471201977fdb1c0c0a26c87287e12dc644
5-
refs/heads/try: d79fbba0db84b2d27440f8feba715dffd3aeaa01
5+
refs/heads/try: edc7ad162cc8228d3d0104c1d0be92f9c43eabb2
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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/try/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/try/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)