about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-02-16 00:21:08 -0800
committerBrian Anderson <banderson@mozilla.com>2014-02-16 00:21:08 -0800
commit58a2b7da077b0372e4a06cdf55d1fe08800fbfec (patch)
tree2cf94cd864d92dc153cd7ba0ae399885d7278d90 /src/doc
parent5d4fd50af3c16ffe43c8035b929374e13bb76793 (diff)
downloadrust-58a2b7da077b0372e4a06cdf55d1fe08800fbfec.tar.gz
rust-58a2b7da077b0372e4a06cdf55d1fe08800fbfec.zip
doc: Reorganize the library index
Only single out std. Put everything else in a consistent list.
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/index.md19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/doc/index.md b/src/doc/index.md
index 9d6ab27598f..e343173f50a 100644
--- a/src/doc/index.md
+++ b/src/doc/index.md
@@ -24,27 +24,24 @@ li {list-style-type: none; }
 
 # Libraries
 
-* [The standard library, `libstd`](std/index.html)
-* [The extra library, `libextra`](extra/index.html)
-
-* [The M:N runtime library, `libgreen`](green/index.html)
-* [The 1:1 runtime library, `libnative`](native/index.html)
-
-* [The Rust libuv library, `librustuv`](rustuv/index.html)
-
-* [The Rust parser, `libsyntax`](syntax/index.html)
-* [The Rust compiler, `librustc`](rustc/index.html)
+* [The standard library, `std`](std/index.html)
 
 * [The `arena` allocation library](arena/index.html)
-* [The `num` arbitrary precision numerics library](num/index.html)
 * [The `collections` library](collections/index.html)
+* [The `extra` library of extra stuff](extra/index.html)
 * [The `flate` compression library](flate/index.html)
 * [The `fourcc` four-character code library](fourcc/index.html)
 * [The `getopts` argument parsing library](getopts/index.html)
 * [The `glob` file path matching library](glob/index.html)
+* [The `green` M:N runtime library](green/index.html)
+* [The `native` 1:1 threading runtime](native/index.html)
+* [The `num` arbitrary precision numerics library](num/index.html)
+* [The `rustc` compiler](rustc/index.html)
+* [The `rustuv` M:N I/O library](rustuv/index.html)
 * [The `semver` version collation library](semver/index.html)
 * [The `serialize` value encoding/decoding library](serialize/index.html)
 * [The `sync` library for concurrency-enabled mechanisms and primitives](sync/index.html)
+* [The `syntax` library, the Rust parser](syntax/index.html)
 * [The `term` terminal-handling library](term/index.html)
 * [The `uuid` 128-bit universally unique identifier library](uuid/index.html)