]> git.proxmox.com Git - rustc.git/blobdiff - vendor/parking_lot/src/rwlock.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / parking_lot / src / rwlock.rs
index 512114c10dfe7fa6460aa798805dfdad6c7ba4b9..4167a858700ad8f6ecd0069dca7c9373d3bde657 100644 (file)
@@ -55,7 +55,7 @@ use lock_api;
 /// - No poisoning, the lock is released normally on panic.
 /// - Only requires 1 word of space, whereas the standard library boxes the
 ///   `RwLock` due to platform limitations.
-/// - Can be statically constructed (requires the `const_fn` nightly feature).
+/// - Can be statically constructed.
 /// - Does not require any drop glue when dropped.
 /// - Inline fast path for the uncontended case.
 /// - Efficient handling of micro-contention using adaptive spinning.