about summary refs log tree commit diff
path: root/library/std/src/ascii.rs
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2020-09-01 23:39:16 -0400
committerJoshua Nelson <jyn514@gmail.com>2020-09-02 17:37:40 -0400
commit59a1a05bff5a16e1361e68214485d40cffb50980 (patch)
tree5f43e353c4f6cbe2d88d46fb760845e6027ef9e8 /library/std/src/ascii.rs
parent726b187546066f689c756c1e3e0fd4ac731b880b (diff)
downloadrust-59a1a05bff5a16e1361e68214485d40cffb50980.tar.gz
rust-59a1a05bff5a16e1361e68214485d40cffb50980.zip
Convert many files to intra-doc links
- Use intra-doc links for `std::io` in `std::fs`
- Use intra-doc links for File::read in unix/ext/fs.rs
- Remove explicit intra-doc links for `true` in `net/addr.rs`
- Use intra-doc links in alloc/src/sync.rs
- Use intra-doc links in src/ascii.rs
- Switch to intra-doc links in alloc/rc.rs
- Use intra-doc links in core/pin.rs
- Use intra-doc links in std/prelude
- Use shorter links in `std/fs.rs`

  `io` is already in scope.
Diffstat (limited to 'library/std/src/ascii.rs')
-rw-r--r--library/std/src/ascii.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/ascii.rs b/library/std/src/ascii.rs
index c9106136d34..035cd9f243b 100644
--- a/library/std/src/ascii.rs
+++ b/library/std/src/ascii.rs
@@ -70,7 +70,6 @@ pub trait AsciiExt {
     /// inherent methods on `u8`, `char`, `[u8]` and `str`.
     ///
     /// [`make_ascii_uppercase`]: AsciiExt::make_ascii_uppercase
-    /// [`str::to_uppercase`]: ../primitive.str.html#method.to_uppercase
     #[stable(feature = "rust1", since = "1.0.0")]
     #[allow(deprecated)]
     fn to_ascii_uppercase(&self) -> Self::Owned;
@@ -91,7 +90,6 @@ pub trait AsciiExt {
     /// inherent methods on `u8`, `char`, `[u8]` and `str`.
     ///
     /// [`make_ascii_lowercase`]: AsciiExt::make_ascii_lowercase
-    /// [`str::to_lowercase`]: ../primitive.str.html#method.to_lowercase
     #[stable(feature = "rust1", since = "1.0.0")]
     #[allow(deprecated)]
     fn to_ascii_lowercase(&self) -> Self::Owned;