about summary refs log tree commit diff
path: root/src/libstd/rt/mod.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-09-18 22:18:38 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-09-20 22:49:03 -0700
commit4fd061c426902b0904c65e64a3780b21f9ab3afb (patch)
treefc6835eb507e916e8184dc821b44e01e5261ccdf /src/libstd/rt/mod.rs
parenta95604fcaacf9cbad5f57b8c08e1b3e871462e9c (diff)
downloadrust-4fd061c426902b0904c65e64a3780b21f9ab3afb.tar.gz
rust-4fd061c426902b0904c65e64a3780b21f9ab3afb.zip
Implement a web backend for rustdoc_ng
This large commit implements and `html` output option for rustdoc_ng. The
executable has been altered to be invoked as "rustdoc_ng html <crate>" and
it will dump everything into the local "doc" directory. JSON can still be
generated by changing 'html' to 'json'.

This also fixes a number of bugs in rustdoc_ng relating to comment stripping,
along with some other various issues that I found along the way.

The `make doc` command has been altered to generate the new documentation into
the `doc/ng/$(CRATE)` directories.
Diffstat (limited to 'src/libstd/rt/mod.rs')
-rw-r--r--src/libstd/rt/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/rt/mod.rs b/src/libstd/rt/mod.rs
index 6df857b8d55..df59e5538b4 100644
--- a/src/libstd/rt/mod.rs
+++ b/src/libstd/rt/mod.rs
@@ -54,7 +54,8 @@ Several modules in `core` are clients of `rt`:
 
 */
 
-#[doc(hidden)];
+// XXX: this should not be here.
+#[allow(missing_doc)];
 
 use cell::Cell;
 use clone::Clone;