about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-05-27 11:41:08 -0700
committerbors <bors@rust-lang.org>2013-05-27 11:41:08 -0700
commitd98cc9995fb5c87230f57eeffb8061df25d85190 (patch)
tree6f5520a5517e1f224ec8a0fb7139f08791174f1c /src/libextra
parent3941f78a1bfb3ecf077dd782e5d03ea7fafcad86 (diff)
parentbeec6e4b2115616e9cfc4283f2b71de1be1aca7a (diff)
downloadrust-d98cc9995fb5c87230f57eeffb8061df25d85190.tar.gz
rust-d98cc9995fb5c87230f57eeffb8061df25d85190.zip
auto merge of #6768 : lkuper/rust/3538, r=thestinger
There were several old `#[doc(hidden)]` attributes in libstd and
libextra, left over from when rustdoc didn't hide private
definitions, tagged with `FIXME #3538`.

Since #3538 is now closed, I removed the `#[doc(hidden)]` attributes
as well as the FIXMEs, but I left `#[doc(hidden)]` in
libstd/task/spawn.rs and libstd/task/rt.rs since those two are
apparently `pub`, as well as in libextra/std.rc since std/extra is
`pub`.
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/std.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libextra/std.rc b/src/libextra/std.rc
index a23a5476342..6166e65f4f7 100644
--- a/src/libextra/std.rc
+++ b/src/libextra/std.rc
@@ -123,7 +123,7 @@ 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
 // can be resolved within libextra.
-#[doc(hidden)] // FIXME #3538
+#[doc(hidden)]
 pub mod std {
     pub use serialize;
     pub use test;
@@ -134,7 +134,7 @@ pub mod std {
     pub use core::cmp;
     pub use core::sys;
 }
-#[doc(hidden)] // FIXME #3538
+#[doc(hidden)]
 pub mod extra {
     pub use serialize;
     pub use test;