about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorHeroesGrave <heroesgrave@gmail.com>2014-02-03 18:56:49 +1300
committerHeroesGrave <heroesgrave@gmail.com>2014-02-07 19:49:26 +1300
commitd81bb441dae3bdb6760dcb0dc0fca2aceb561d24 (patch)
treeb719e6659bde57f21389527ca7f1531683b0245d /src/doc
parent87fe3ccf09fa16d662427ffdd7a846d72551a27f (diff)
moved collections from libextra into libcollections
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/index.md1
-rw-r--r--src/doc/rust.md2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/index.md b/src/doc/index.md
index 39dc196b6a0..a552a48714b 100644
--- a/src/doc/index.md
+++ b/src/doc/index.md
@@ -38,6 +38,7 @@ li {list-style-type: none; }
 * [The Rust compiler, `librustc`](rustc/index.html)
 
 * [The `arena` allocation library](arena/index.html)
+* [The `collections` library](collections/index.html)
 * [The `flate` compression library](flate/index.html)
 * [The `getopts` argument parsing library](getopts/index.html)
 * [The `glob` file path matching library](glob/index.html)
diff --git a/src/doc/rust.md b/src/doc/rust.md
index ff2e2b52369..4a611fe7d53 100644
--- a/src/doc/rust.md
+++ b/src/doc/rust.md
@@ -881,7 +881,7 @@ use foo::baz::foobaz;    // good: foo is at the root of the crate
 mod foo {
     extern mod extra;
 
-    use foo::extra::list;  // good: foo is at crate root
+    use foo::extra::time;  // good: foo is at crate root
 //  use extra::*;          // bad:  extra is not at the crate root
     use self::baz::foobaz; // good: self refers to module 'foo'
     use foo::bar::foobar;  // good: foo is at crate root