about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-05-18 12:39:17 -0700
committerPatrick Walton <pcwalton@mimiga.net>2013-05-22 21:57:08 -0700
commitc532e033c9ee92d208a9bb2fac4c12d901932f42 (patch)
tree286fea43f1118aeb3927e0b07cc450d6095266b4 /src/libextra
parentf3723cf7c486fd22544b71d27eca5ed7082c6dff (diff)
downloadrust-c532e033c9ee92d208a9bb2fac4c12d901932f42.tar.gz
rust-c532e033c9ee92d208a9bb2fac4c12d901932f42.zip
librustc: Change `std` to `extra` throughout libsyntax and librustc
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/std.rc10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/libextra/std.rc b/src/libextra/std.rc
index 90672d221c5..777f45e84bc 100644
--- a/src/libextra/std.rc
+++ b/src/libextra/std.rc
@@ -119,10 +119,16 @@ pub mod test;
 pub mod serialize;
 
 // A curious inner-module that's not exported that contains the binding
-// 'std' so that macro-expanded references to std::serialize and such
-// can be resolved within libcore.
+// 'extra' so that macro-expanded references to std::serialize and such
+// can be resolved within libextra.
 #[doc(hidden)] // FIXME #3538
 pub mod std {
     pub use serialize;
     pub use test;
 }
+#[doc(hidden)] // FIXME #3538
+pub mod extra {
+    pub use serialize;
+    pub use test;
+}
+