about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-03-13 23:59:01 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-03-14 11:28:39 +1100
commitadc357abe6de869159a6268dc14709a4dd19e008 (patch)
tree0f6d94d22b32c194c887632aa4272c8ec60f9d40
parent62792f09f20221add2484608fc3071259067b79a (diff)
downloadrust-adc357abe6de869159a6268dc14709a4dd19e008.tar.gz
rust-adc357abe6de869159a6268dc14709a4dd19e008.zip
std: render the vec_ng docs.
These are wildly incomplete, but having something there is better than
nothing, e.g. so that people know it exists, and many of the functions
behaviour can be guessed from the name or by checking the source: it's
knowing they exist at all that's the hard part.
-rw-r--r--src/libstd/vec_ng.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libstd/vec_ng.rs b/src/libstd/vec_ng.rs
index 199fc68be47..7b77a4b60fb 100644
--- a/src/libstd/vec_ng.rs
+++ b/src/libstd/vec_ng.rs
@@ -8,8 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// Migrate documentation over from `std::vec` when it is removed.
-#[doc(hidden)];
+// Migrate documentation over from `std::vec` progressively.  (This is
+// shown in docs so that people have something to refer too, even if
+// the page is rather empty.)
+#[allow(missing_doc)];
 
 use cast::{forget, transmute};
 use clone::Clone;