Skip to content

Commit 232f4b3

Browse files
committed
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
2 parents 5e1e245 + dc0a7b6 commit 232f4b3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libunicode/u_char.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ pub trait UnicodeChar {
235235
/// The case-folding performed is the common or simple mapping: it maps
236236
/// one Unicode codepoint (one character in Rust) to its uppercase
237237
/// equivalent according to the Unicode database [1]. The additional
238-
/// `SpecialCasing.txt` is not considered here, as it expands to multiple
238+
/// [`SpecialCasing.txt`] is not considered here, as it expands to multiple
239239
/// codepoints in some cases.
240240
///
241241
/// A full reference can be found here [2].
@@ -247,6 +247,8 @@ pub trait UnicodeChar {
247247
///
248248
/// [1]: ftp://ftp.unicode.org/Public/UNIDATA/UnicodeData.txt
249249
///
250+
/// [`SpecialCasing`.txt`]: ftp://ftp.unicode.org/Public/UNIDATA/SpecialCasing.txt
251+
///
250252
/// [2]: http://www.unicode.org/versions/Unicode4.0.0/ch03.pdf#G33992
251253
fn to_uppercase(&self) -> char;
252254

0 commit comments

Comments
 (0)