aboutsummaryrefslogtreecommitdiff
path: root/lib/std/bit_set.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/bit_set.zig')
-rw-r--r--lib/std/bit_set.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/std/bit_set.zig b/lib/std/bit_set.zig
index 992f19151b..2c4e50dee3 100644
--- a/lib/std/bit_set.zig
+++ b/lib/std/bit_set.zig
@@ -23,7 +23,7 @@
//! size. The interfaces of these two types match exactly, except for fields.
//!
//! DynamicBitSet:
-//! A bit set with runtime known size, backed by an allocated slice
+//! A bit set with runtime-known size, backed by an allocated slice
//! of usize.
//!
//! DynamicBitSetUnmanaged:
@@ -515,7 +515,7 @@ pub fn ArrayBitSet(comptime MaskIntType: type, comptime size: usize) type {
};
}
-/// A bit set with runtime known size, backed by an allocated slice
+/// A bit set with runtime-known size, backed by an allocated slice
/// of usize. The allocator must be tracked externally by the user.
pub const DynamicBitSetUnmanaged = struct {
const Self = @This();
@@ -843,7 +843,7 @@ pub const DynamicBitSetUnmanaged = struct {
}
};
-/// A bit set with runtime known size, backed by an allocated slice
+/// A bit set with runtime-known size, backed by an allocated slice
/// of usize. Thin wrapper around DynamicBitSetUnmanaged which keeps
/// track of the allocator instance.
pub const DynamicBitSet = struct {