about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-05-21 11:12:51 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-05-21 11:53:45 -0400
commit65ead717a7719f0d0b761794500e5e8d3ebbcb65 (patch)
treeb6cda9760f933685fe61d99b6a8a007616146c96 /src/liballoc
parent7bd3bbd78e24f640754ccd223611d1ef412a6106 (diff)
downloadrust-65ead717a7719f0d0b761794500e5e8d3ebbcb65.tar.gz
rust-65ead717a7719f0d0b761794500e5e8d3ebbcb65.zip
she -> they in Dining Philosophers
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.
 //! }
 //! ```