about summary refs log tree commit diff
path: root/library/std/src/sys/windows/mutex.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/windows/mutex.rs')
-rw-r--r--library/std/src/sys/windows/mutex.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/windows/mutex.rs b/library/std/src/sys/windows/mutex.rs
index 12c5ea741f9..56f91ebe582 100644
--- a/library/std/src/sys/windows/mutex.rs
+++ b/library/std/src/sys/windows/mutex.rs
@@ -1,6 +1,6 @@
 //! System Mutexes
 //!
-//! The Windows implementation of mutexes is a little odd and it may not be
+//! The Windows implementation of mutexes is a little odd and it might not be
 //! immediately obvious what's going on. The primary oddness is that SRWLock is
 //! used instead of CriticalSection, and this is done because:
 //!