From dfe840245bf0ac42ae2b15176e21cece41c9f7b7 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Sun, 2 Nov 2014 21:00:23 -0500 Subject: [PATCH] Remove incorrect doc annotation, mark experimental since we haven't discussed in an API meeting --- src/libcore/array.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/libcore/array.rs b/src/libcore/array.rs index 999574b4d7d5..829605ce7cc1 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};