about summary refs log tree commit diff
path: root/src/libcore/array.rs
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2014-11-02 21:00:23 -0500
committerNiko Matsakis <niko@alum.mit.edu>2014-11-05 11:29:15 -0500
commitdfe840245bf0ac42ae2b15176e21cece41c9f7b7 (patch)
treea6f0889d6a7a6d1722a2f570c788b9ca61711834 /src/libcore/array.rs
parent63718792df1214d0bf7b5a12508cc7301e3be665 (diff)
downloadrust-dfe840245bf0ac42ae2b15176e21cece41c9f7b7.tar.gz
rust-dfe840245bf0ac42ae2b15176e21cece41c9f7b7.zip
Remove incorrect doc annotation, mark experimental since we haven't discussed in an API meeting
Diffstat (limited to 'src/libcore/array.rs')
-rw-r--r--src/libcore/array.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs
index 999574b4d7d..829605ce7cc 100644
--- a/src/libcore/array.rs
+++ b/src/libcore/array.rs
@@ -14,12 +14,8 @@
  * to all lengths.
  */
 
-#![doc(primitive = "tuple")]
 #![stable]
-
-#[unstable = "this is just a documentation module and should not be part \
-              of the public api"]
-pub use unit;
+#![experimental] // not yet reviewed
 
 use cmp::*;
 use option::{Option};