about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorEdward Wang <edward.yu.wang@gmail.com>2014-04-23 23:35:45 +0800
committerEdward Wang <edward.yu.wang@gmail.com>2014-04-23 23:35:45 +0800
commit6fa4036c12a8363183eb538dcefd907d95aa9bfe (patch)
tree719beb265e0f0906f9ff18486550cbf7c44a922d /src/libstd
parente049a7003b686002d5c091ec0465d07e5c5ff7a6 (diff)
downloadrust-6fa4036c12a8363183eb538dcefd907d95aa9bfe.tar.gz
rust-6fa4036c12a8363183eb538dcefd907d95aa9bfe.zip
Hide trait rc::RcBoxPtr from docs
It is for internal use only and should not appear in docs.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rc.rs b/src/libstd/rc.rs
index ff6e494b948..5673929d5a1 100644
--- a/src/libstd/rc.rs
+++ b/src/libstd/rc.rs
@@ -192,7 +192,7 @@ impl<T> Clone for Weak<T> {
     }
 }
 
-#[allow(missing_doc)]
+#[doc(hidden)]
 trait RcBoxPtr<T> {
     fn inner<'a>(&'a self) -> &'a RcBox<T>;