aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorr00ster91 <r00ster91@proton.me>2022-10-05 21:17:06 +0200
committerr00ster91 <r00ster91@proton.me>2022-10-05 21:33:42 +0200
commit8e2aaf6aed5213736f6cbbb374098e2394f19429 (patch)
treee7385e628e35a662f2e5595ddd5aa32b66d08168 /lib/std
parent51d9db856978610c24b3fed50a9550455a2eb64b (diff)
downloadzig-8e2aaf6aed5213736f6cbbb374098e2394f19429.tar.gz
zig-8e2aaf6aed5213736f6cbbb374098e2394f19429.zip
fix(text): hyphenate "runtime" adjectives
Diffstat (limited to 'lib/std')
-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 {