about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-02-13 11:46:29 -0500
committerZack Weinberg <zackw@panix.com>2017-02-13 11:46:29 -0500
commitc2566f638aa065f14f296aaad0666492ae00a636 (patch)
treef98bddc4ed70529f547fb833e0a421718615b5fe /src/libstd
parent4c3448f356dcb04150db20dcef92da688d49a4d5 (diff)
downloadrust-c2566f638aa065f14f296aaad0666492ae00a636.tar.gz
rust-c2566f638aa065f14f296aaad0666492ae00a636.zip
Squeeze URL lines under 100 chars wide to make tidy happy.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/ascii.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs
index cf965291fa2..2a22e5e7a11 100644
--- a/src/libstd/ascii.rs
+++ b/src/libstd/ascii.rs
@@ -454,19 +454,19 @@ pub trait AsciiExt {
     ///
     /// Rust uses the WhatWG Infra Standard's [definition of ASCII
     /// whitespace][infra-aw].  There are several other definitions in
-    /// wide use.  For instance, [the POSIX locale][posix-ctype]
-    /// includes U+000B VERTICAL TAB as well as all the above
-    /// characters, but—from the very same specification—[the default
-    /// rule for "field splitting" in the Bourne shell][field-splitting]
-    /// considers *only* SPACE, HORIZONTAL TAB, and LINE FEED as whitespace.
+    /// wide use.  For instance, [the POSIX locale][pct] includes
+    /// U+000B VERTICAL TAB as well as all the above characters,
+    /// but—from the very same specification—[the default rule for
+    /// "field splitting" in the Bourne shell][bfs] considers *only*
+    /// SPACE, HORIZONTAL TAB, and LINE FEED as whitespace.
     ///
     /// If you are writing a program that will process an existing
     /// file format, check what that format's definition of whitespace is
     /// before using this function.
     ///
     /// [infra-aw]: https://infra.spec.whatwg.org/#ascii-whitespace
-    /// [posix-ctype]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html#tag_07_03_01
-    /// [field-splitting]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05
+    /// [pct]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html#tag_07_03_01
+    /// [bfs]: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05
     ///
     /// # Examples
     ///