summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/process/membarrier.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/process/membarrier.rs')
-rw-r--r--vendor/rustix/src/process/membarrier.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/rustix/src/process/membarrier.rs b/vendor/rustix/src/process/membarrier.rs
index b64deb82e..8709337bc 100644
--- a/vendor/rustix/src/process/membarrier.rs
+++ b/vendor/rustix/src/process/membarrier.rs
@@ -46,7 +46,7 @@ impl MembarrierQuery {
/// Test whether this query result contains the given command.
#[inline]
pub fn contains_command(self, cmd: MembarrierCommand) -> bool {
- // Safety: `MembarrierCommand` is an enum that only contains values
+ // SAFETY: `MembarrierCommand` is an enum that only contains values
// also valid in `MembarrierQuery`.
self.contains(unsafe { Self::from_bits_unchecked(cmd as _) })
}