diff --git a/lib/std/ascii.zig b/lib/std/ascii.zig index 6f466e0a6a..a88b637ec0 100644 --- a/lib/std/ascii.zig +++ b/lib/std/ascii.zig @@ -177,7 +177,7 @@ pub fn isAscii(c: u8) bool { return c < 128; } -/// /// Deprecated: use `isAscii` +/// Deprecated: use `isAscii` pub const isASCII = isAscii; /// Uppercases the character and returns it as-is if already uppercase or not a letter.