diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-10-12 05:26:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-12 05:26:11 -0400 |
| commit | 7ce1ee1bce4d9ca05a647c9c390c6525be0b6362 (patch) | |
| tree | a65ac3b2e1f252a1cc7c5efa6e70f0320034e823 /src/type.zig | |
| parent | bec40a89c21009ea7f2c41362cc13d27f065b43e (diff) | |
| parent | 8e2aaf6aed5213736f6cbbb374098e2394f19429 (diff) | |
| download | zig-7ce1ee1bce4d9ca05a647c9c390c6525be0b6362.tar.gz zig-7ce1ee1bce4d9ca05a647c9c390c6525be0b6362.zip | |
Merge pull request #13081 from r00ster91/docs
fix(text): hyphenation and other fixes
Diffstat (limited to 'src/type.zig')
| -rw-r--r-- | src/type.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type.zig b/src/type.zig index 7c35eccbe6..ea2b6c30c2 100644 --- a/src/type.zig +++ b/src/type.zig @@ -2318,7 +2318,7 @@ pub const Type = extern union { /// * the type has only one possible value, making its ABI size 0. /// - an enum with an explicit tag type has the ABI size of the integer tag type, /// making it one-possible-value only if the integer tag type has 0 bits. - /// When `ignore_comptime_only` is true, then types that are comptime only + /// When `ignore_comptime_only` is true, then types that are comptime-only /// may return false positives. pub fn hasRuntimeBitsAdvanced( ty: Type, |
