Fix deprecation docs for isAlpha and isCntrl

This commit is contained in:
fn ⌃ ⌥
2022-10-29 07:28:11 -07:00
committed by Andrew Kelley
parent 20925b2f5c
commit a70c86e661

View File

@@ -300,9 +300,9 @@ fn inTable(c: u8, t: tIndex) bool {
/// DEPRECATED: use `isAlphanumeric`
pub const isAlNum = isAlphanumeric;
/// DEPRECATED: use `isAlpha`
/// DEPRECATED: use `isAlphabetic`
pub const isAlpha = isAlphabetic;
/// DEPRECATED: use `isAlpha`
/// DEPRECATED: use `isControl`
pub const isCntrl = isControl;
/// DEPRECATED: use `isWhitespace`.
pub const isSpace = isWhitespace;