about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-23 17:33:54 +0000
committerbors <bors@rust-lang.org>2015-05-23 17:33:54 +0000
commita33b808ac0ec37a8ef78b0581b3b061271c93ab8 (patch)
tree6d539c03e398dec1e3b922521f025e135a1144f2 /src/liballoc
parent4ee6820911d29b9abf0b0f0481d065bc6ae5f7d6 (diff)
parenta650075f89d562766b97f5b845343e1a3e36a1d1 (diff)
downloadrust-a33b808ac0ec37a8ef78b0581b3b061271c93ab8.tar.gz
rust-a33b808ac0ec37a8ef78b0581b3b061271c93ab8.zip
Auto merge of #25735 - oli-obk:rollup, r=steveklabnik
- Successful merges: #25681, #25687, #25695, #25697, #25702, #25703, #25709, #25710, #25714, #25715, #25716, #25722
- 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 1d783ed8d36..1f660449593 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -144,7 +144,7 @@
 //!     // At the end of the method, gadget_owner, gadget1 and gadget2 get
 //!     // destroyed. There are now no strong (`Rc<T>`) references to the gadgets.
 //!     // Once they get destroyed, the Gadgets get destroyed. This zeroes the
-//!     // reference count on Gadget Man, so he gets destroyed as well.
+//!     // reference count on Gadget Man, they get destroyed as well.
 //! }
 //! ```