about summary refs log tree commit diff
path: root/src/libunicode
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-10-14 21:22:23 +0000
committerbors <bors@rust-lang.org>2014-10-14 21:22:23 +0000
commit232f4b34041edaf0496d7ac2c3cde28780730b1e (patch)
tree9b1457cc72207b52c6222cded3560a2a0afc8039 /src/libunicode
parent5e1e2456ed7e06c2341893118659efaee35fc391 (diff)
parentdc0a7b6e22a91311d5718130bb5dfdba883ce12a (diff)
downloadrust-232f4b34041edaf0496d7ac2c3cde28780730b1e.tar.gz
rust-232f4b34041edaf0496d7ac2c3cde28780730b1e.zip
auto merge of #17966 : frewsxcv/rust/master, r=nikomatsakis
The document is mentioned, but doesn't link to it, so it's a little confusing
Diffstat (limited to 'src/libunicode')
-rw-r--r--src/libunicode/u_char.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libunicode/u_char.rs b/src/libunicode/u_char.rs
index f725cdba64e..bac8b21ea68 100644
--- a/src/libunicode/u_char.rs
+++ b/src/libunicode/u_char.rs
@@ -235,7 +235,7 @@ pub trait UnicodeChar {
     /// The case-folding performed is the common or simple mapping: it maps
     /// one Unicode codepoint (one character in Rust) to its uppercase
     /// equivalent according to the Unicode database [1]. The additional
-    /// `SpecialCasing.txt` is not considered here, as it expands to multiple
+    /// [`SpecialCasing.txt`] is not considered here, as it expands to multiple
     /// codepoints in some cases.
     ///
     /// A full reference can be found here [2].
@@ -247,6 +247,8 @@ pub trait UnicodeChar {
     ///
     /// [1]: ftp://ftp.unicode.org/Public/UNIDATA/UnicodeData.txt
     ///
+    /// [`SpecialCasing`.txt`]: ftp://ftp.unicode.org/Public/UNIDATA/SpecialCasing.txt
+    ///
     /// [2]: http://www.unicode.org/versions/Unicode4.0.0/ch03.pdf#G33992
     fn to_uppercase(&self) -> char;