From 168981c67825fbdb3b70da8ff9f0f3b691bd36e5 Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Sun, 27 Apr 2025 19:19:53 +0900 Subject: [PATCH] docs(std.ascii): Remove redundant three slashes --- lib/std/ascii.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.