about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorOliver Schneider <github6541940@oli-obk.de>2015-05-23 19:03:18 +0200
committerOliver Schneider <github6541940@oli-obk.de>2015-05-23 19:03:18 +0200
commit0c74a73bd588c0a496b20f751a3b36f34210c69d (patch)
treec9e02ff76b01be8ce05b8b42f2b8a9a1738aa5d1 /src/liballoc
parent88e6976acf2e7ea3b13598bbc42fa543107eddcd (diff)
parent65ead717a7719f0d0b761794500e5e8d3ebbcb65 (diff)
downloadrust-0c74a73bd588c0a496b20f751a3b36f34210c69d.tar.gz
rust-0c74a73bd588c0a496b20f751a3b36f34210c69d.zip
Rollup merge of #25681 - steveklabnik:gender, r=nmatsakis
Also, when checking for common gendered words elsewhere, I found one 'he', moved to 'they' as well.

https://github.com/rust-lang/rust/pull/25640#issuecomment-104304643
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.
 //! }
 //! ```