Commit 227d2b15e4

Shun Sakai <sorairolake@protonmail.ch>
2025-04-27 12:19:53
docs(std.ascii): Remove redundant three slashes
1 parent 19b43ee
Changed files (1)
lib
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.