about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorathulappadan <a4athulappadan@gmail.com>2016-09-11 22:58:01 +0530
committerathulappadan <a4athulappadan@gmail.com>2016-09-11 22:58:01 +0530
commit41881e85bd832127f2a6eee5821eaae353dea281 (patch)
tree730da8b3d9bd50eec2c578ae76e9eca931942bb5 /src/liballoc
parent49e77dbf25ed6526fb5d37c32e55797fb04522f0 (diff)
downloadrust-41881e85bd832127f2a6eee5821eaae353dea281.tar.gz
rust-41881e85bd832127f2a6eee5821eaae353dea281.zip
Documentation for default types modified
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index a2923091fb5..3d579641b96 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -718,7 +718,7 @@ impl<T: ?Sized> Clone for Weak<T> {
 
 #[stable(feature = "downgraded_weak", since = "1.10.0")]
 impl<T> Default for Weak<T> {
-    /// Creates a new `Weak<T>`.
+    /// Constructs a new `Weak<T>` without an accompanying instance of T.
     fn default() -> Weak<T> {
         Weak::new()
     }