about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-02-08 22:27:34 +0100
committerMara Bos <m-ou.se@m-ou.se>2021-02-08 22:27:34 +0100
commit15de287cd56815f04e27a1fc1721e8de1ababd66 (patch)
treeaabc1ef73d3ede4546073cd13c3ce9c3d513cdbb
parent921ec4b3fca17cc777766c240038d7d50ba98e0d (diff)
downloadrust-15de287cd56815f04e27a1fc1721e8de1ababd66.tar.gz
rust-15de287cd56815f04e27a1fc1721e8de1ababd66.zip
Remove outdated comment.
-rw-r--r--library/std/src/sys/windows/mutex.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/sys/windows/mutex.rs b/library/std/src/sys/windows/mutex.rs
index 72a0993d94d..12c5ea741f9 100644
--- a/library/std/src/sys/windows/mutex.rs
+++ b/library/std/src/sys/windows/mutex.rs
@@ -23,8 +23,6 @@ pub struct Mutex {
 }
 
 // Windows SRW Locks are movable (while not borrowed).
-// ReentrantMutexes (in Inner) are not, but those are stored indirectly through
-// a Box, so do not move when the Mutex it self is moved.
 pub type MovableMutex = Mutex;
 
 unsafe impl Send for Mutex {}