about summary refs log tree commit diff
path: root/src/libstd/core.rc
diff options
context:
space:
mode:
authorRalph Bodenner <rkbodenner+github@gmail.com>2013-06-16 23:21:49 -0700
committerRalph Bodenner <rkbodenner+github@gmail.com>2013-06-16 23:26:08 -0700
commit819d07af7f73af36a2bef102b92e5a8701122312 (patch)
tree072bcdc960a5fe093a5030c2f1de78fd7375ad0b /src/libstd/core.rc
parent98bd68343c053ff62cbc6617d04e34c54a3cf720 (diff)
downloadrust-819d07af7f73af36a2bef102b92e5a8701122312.tar.gz
rust-819d07af7f73af36a2bef102b92e5a8701122312.zip
Update doc references to new names for std, extra, and std::libc
Diffstat (limited to 'src/libstd/core.rc')
-rw-r--r--src/libstd/core.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/core.rc b/src/libstd/core.rc
index 8e09a9b17fd..e1f8137a4a9 100644
--- a/src/libstd/core.rc
+++ b/src/libstd/core.rc
@@ -38,7 +38,7 @@ with the `std::` path prefix, as in `use std::vec`, `use std::task::spawn`,
 etc.
 
 Additionally, `std` contains a `prelude` module that reexports many of the
-most common std modules, types and traits. The contents of the prelude are
+most common `std` modules, types and traits. The contents of the prelude are
 imported into every *module* by default.  Implicitly, all modules behave as if
 they contained the following prologue:
 
@@ -66,7 +66,7 @@ they contained the following prologue:
 #[deny(non_camel_case_types)];
 #[deny(missing_doc)];
 
-// Make core testable by not duplicating lang items. See #2912
+// Make std testable by not duplicating lang items. See #2912
 #[cfg(test)] extern mod realstd(name = "std");
 #[cfg(test)] pub use kinds = realstd::kinds;
 #[cfg(test)] pub use ops = realstd::ops;