mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 17:23:09 +00:00
Fix deprecation docs for isAlpha and isCntrl
This commit is contained in:
parent
20925b2f5c
commit
a70c86e661
@ -300,9 +300,9 @@ fn inTable(c: u8, t: tIndex) bool {
|
|||||||
|
|
||||||
/// DEPRECATED: use `isAlphanumeric`
|
/// DEPRECATED: use `isAlphanumeric`
|
||||||
pub const isAlNum = isAlphanumeric;
|
pub const isAlNum = isAlphanumeric;
|
||||||
/// DEPRECATED: use `isAlpha`
|
/// DEPRECATED: use `isAlphabetic`
|
||||||
pub const isAlpha = isAlphabetic;
|
pub const isAlpha = isAlphabetic;
|
||||||
/// DEPRECATED: use `isAlpha`
|
/// DEPRECATED: use `isControl`
|
||||||
pub const isCntrl = isControl;
|
pub const isCntrl = isControl;
|
||||||
/// DEPRECATED: use `isWhitespace`.
|
/// DEPRECATED: use `isWhitespace`.
|
||||||
pub const isSpace = isWhitespace;
|
pub const isSpace = isWhitespace;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user