Skip to content

Get rid of no-longer-needed #[doc(hidden)] attributes. #6768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libextra/std.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
2 changes: 0 additions & 2 deletions src/libstd/num/cmath.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:"

Expand Down
2 changes: 0 additions & 2 deletions src/libstd/stackwalk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 0 additions & 2 deletions src/libstd/task/local_data_priv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/libstd/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ pub fn task() -> TaskBuilder {
}
}

#[doc(hidden)] // FIXME #3538
priv impl TaskBuilder {
fn consume(&mut self) -> TaskBuilder {
if self.consumed {
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/task/rt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The task interface to the runtime

*/

#[doc(hidden)]; // FIXME #3538
#[doc(hidden)];

use libc;

Expand Down
2 changes: 1 addition & 1 deletion src/libstd/task/spawn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
*
****************************************************************************/

#[doc(hidden)]; // FIXME #3538
#[doc(hidden)];

use cast::transmute;
use cast;
Expand Down
2 changes: 0 additions & 2 deletions src/libstd/unicode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down