docs(std.ascii): Remove redundant three slashes

This commit is contained in:
Shun Sakai 2025-04-27 19:19:53 +09:00 committed by Alex Rønne Petersen
parent 23ab05f1f5
commit 168981c678
No known key found for this signature in database

View File

@ -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.