about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-06-17 15:54:56 -0700
committerbors <bors@rust-lang.org>2013-06-17 15:54:56 -0700
commitd084d9e7df0da671765c8a2d9212757f16ab1c9d (patch)
treede88c6939a96ad3f8d853dadb49cab1884b11d3e /src/libextra
parent4c90b987b54389bf8323d63be8796951b44d622f (diff)
parent5acc8e5a51e97a6ab5f0aaceedefcf8cd10a0c1b (diff)
auto merge of #7197 : rkbodenner/rust/doc-for-lib-move, r=brson
Was updating some code of mine to use the new `std`/`extra` library names, and noticed a place where docs for `std::libc` hadn't been updated. Then I updated some top-level docs for the new libraries' names, too.
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/std.rc15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/libextra/std.rc b/src/libextra/std.rc
index 93759bea35f..96c53266c6f 100644
--- a/src/libextra/std.rc
+++ b/src/libextra/std.rc
@@ -10,19 +10,22 @@
 
 /*!
 
-The Rust standard library.
+Rust extras.
 
-The Rust standand library provides a number of useful features that are
-not required in or otherwise suitable for the core library.
+The `extra` crate is a set of useful modules for a variety of
+purposes, including collections, numerics, I/O, serialization,
+and concurrency.
+
+Rust extras are part of the standard Rust distribution.
 
 */
 
 #[link(name = "extra",
        vers = "0.7-pre",
        uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
-       url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
+       url = "https://github.com/mozilla/rust/tree/master/src/libextra")];
 
-#[comment = "The Rust standard library"];
+#[comment = "Rust extras"];
 #[license = "MIT/ASL2"];
 #[crate_type = "lib"];
 
@@ -128,7 +131,7 @@ pub mod test;
 pub mod serialize;
 
 // A curious inner-module that's not exported that contains the binding
-// 'extra' so that macro-expanded references to std::serialize and such
+// 'extra' so that macro-expanded references to extra::serialize and such
 // can be resolved within libextra.
 #[doc(hidden)]
 pub mod std {