about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-06-07 11:50:31 -0700
committerbors <bors@rust-lang.org>2016-06-07 11:50:31 -0700
commit39a523ba134c86df449bccd903313fc5e7b6f6c3 (patch)
treef07d460c961da44d6a7f83cda319b6724be609b4 /src/liballoc
parent9b2becaf6e20463253a80cbcb5ec2ecefb949d1e (diff)
parenta0bf3b8b47b728d6b9761f22b98fd77b91536d47 (diff)
downloadrust-39a523ba134c86df449bccd903313fc5e7b6f6c3.tar.gz
rust-39a523ba134c86df449bccd903313fc5e7b6f6c3.zip
Auto merge of #34139 - steveklabnik:rollup, r=steveklabnik
Rollup of 13 pull requests

- Successful merges: #33645, #33897, #33945, #34007, #34060, #34070, #34094, #34098, #34099, #34104, #34124, #34125, #34138
- Failed merges:
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs
index cf4fb459bc1..a873be455d5 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -271,7 +271,7 @@ impl<T> Rc<T> {
 }
 
 impl<T: ?Sized> Rc<T> {
-    /// Downgrades the `Rc<T>` to a `Weak<T>` reference.
+    /// Creates a new `Weak<T>` reference from this value.
     ///
     /// # Examples
     ///