about summary refs log tree commit diff
path: root/src/librustc_unicode
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2016-01-13 23:19:24 +0000
committerOliver Middleton <olliemail27@gmail.com>2016-01-13 23:19:24 +0000
commit01cbdf4481915948773a8abfb67bcc1a44571dab (patch)
treef8513e53f53e0936f28e909bc442b10020d62151 /src/librustc_unicode
parentd3c83fef245f1cb2e523c8913b8968c98faec1f4 (diff)
downloadrust-01cbdf4481915948773a8abfb67bcc1a44571dab.tar.gz
rust-01cbdf4481915948773a8abfb67bcc1a44571dab.zip
Fix some broken and missing links in the docs
Diffstat (limited to 'src/librustc_unicode')
-rw-r--r--src/librustc_unicode/char.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc_unicode/char.rs b/src/librustc_unicode/char.rs
index 66f8068eae6..46ecd3a80b5 100644
--- a/src/librustc_unicode/char.rs
+++ b/src/librustc_unicode/char.rs
@@ -46,8 +46,8 @@ pub use tables::UNICODE_VERSION;
 /// This `struct` is created by the [`to_lowercase()`] method on [`char`]. See
 /// its documentation for more.
 ///
-/// [`to_lowercase()`]: primitive.char.html#method.escape_to_lowercase
-/// [`char`]: primitive.char.html
+/// [`to_lowercase()`]: ../primitive.char.html#method.to_lowercase
+/// [`char`]: ../primitive.char.html
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct ToLowercase(CaseMappingIter);
 
@@ -64,8 +64,8 @@ impl Iterator for ToLowercase {
 /// This `struct` is created by the [`to_uppercase()`] method on [`char`]. See
 /// its documentation for more.
 ///
-/// [`to_uppercase()`]: primitive.char.html#method.escape_to_uppercase
-/// [`char`]: primitive.char.html
+/// [`to_uppercase()`]: ../primitive.char.html#method.to_uppercase
+/// [`char`]: ../primitive.char.html
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct ToUppercase(CaseMappingIter);