Use gender neutral terms

This commit is contained in:
James 'zofrex' Sanderson
2022-04-07 08:51:59 +01:00
parent 8cd6080f6c
commit ef59ab738e
5 changed files with 7 additions and 7 deletions

View File

@@ -980,7 +980,7 @@ pub mod fast {
unsafe fn try_initialize<F: FnOnce() -> T>(&self, init: F) -> Option<&'static T> {
// SAFETY: See comment above (this function doc).
if !mem::needs_drop::<T>() || unsafe { self.try_register_dtor() } {
// SAFETY: See comment above (his function doc).
// SAFETY: See comment above (this function doc).
Some(unsafe { self.inner.initialize(init) })
} else {
None