提交 d98cc999 编写于 作者: B bors

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`.
......@@ -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;
......
......@@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[doc(hidden)]; // FIXME #3538
// function names are almost identical to C's libmath, a few have been
// renamed, grep for "rename:"
......
......@@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[doc(hidden)]; // FIXME #3538
use cast::transmute;
use unstable::intrinsics;
......
......@@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[doc(hidden)]; // FIXME #3538
use cast;
use cmp::Eq;
use libc;
......
......@@ -195,7 +195,6 @@ pub fn task() -> TaskBuilder {
}
}
#[doc(hidden)] // FIXME #3538
priv impl TaskBuilder {
fn consume(&mut self) -> TaskBuilder {
if self.consumed {
......
......@@ -14,7 +14,7 @@
*/
#[doc(hidden)]; // FIXME #3538
#[doc(hidden)];
use libc;
......
......@@ -70,7 +70,7 @@
*
****************************************************************************/
#[doc(hidden)]; // FIXME #3538
#[doc(hidden)];
use cast::transmute;
use cast;
......
......@@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[doc(hidden)]; // FIXME #3538
// The following code was generated by "src/etc/unicode.py"
pub mod general_category {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册