@@ -454,19 +454,19 @@ pub trait AsciiExt {
454
454
///
455
455
/// Rust uses the WhatWG Infra Standard's [definition of ASCII
456
456
/// whitespace][infra-aw]. There are several other definitions in
457
- /// wide use. For instance, [the POSIX locale][posix-ctype]
458
- /// includes U+000B VERTICAL TAB as well as all the above
459
- /// characters, but—from the very same specification—[the default
460
- /// rule for "field splitting" in the Bourne shell][field-splitting]
461
- /// considers *only* SPACE, HORIZONTAL TAB, and LINE FEED as whitespace.
457
+ /// wide use. For instance, [the POSIX locale][pct] includes
458
+ /// U+000B VERTICAL TAB as well as all the above characters,
459
+ /// but—from the very same specification—[the default rule for
460
+ /// "field splitting" in the Bourne shell][bfs] considers *only*
461
+ /// SPACE, HORIZONTAL TAB, and LINE FEED as whitespace.
462
462
///
463
463
/// If you are writing a program that will process an existing
464
464
/// file format, check what that format's definition of whitespace is
465
465
/// before using this function.
466
466
///
467
467
/// [infra-aw]: https://infra.spec.whatwg.org/#ascii-whitespace
468
- /// [posix-ctype ]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html#tag_07_03_01
469
- /// [field-splitting ]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05
468
+ /// [pct ]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html#tag_07_03_01
469
+ /// [bfs ]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05
470
470
///
471
471
/// # Examples
472
472
///
0 commit comments