diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-03-05 22:04:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-05 22:04:07 +0100 |
| commit | 7aac135dd749e91afb3c44972d12045256ed6b09 (patch) | |
| tree | 89124563cfe2323f3e0be5e0f1ea3d2ad775ead2 | |
| parent | 22a743bc1c242b539cd70116068e62b1bd686a10 (diff) | |
| parent | 6ed4829c17bb3bf627fa09b5c15be7e47610acf8 (diff) | |
| download | rust-7aac135dd749e91afb3c44972d12045256ed6b09.tar.gz rust-7aac135dd749e91afb3c44972d12045256ed6b09.zip | |
Rollup merge of #69728 - LeSeulArtichaut:patch-1, r=steveklabnik
Make link to `std::str` active Closes #69726. r? @dtolnay
| -rw-r--r-- | src/libcore/str/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs index 9c0db5d9872..6ad0e68a88f 100644 --- a/src/libcore/str/mod.rs +++ b/src/libcore/str/mod.rs @@ -2,7 +2,9 @@ //! String manipulation. //! -//! For more details, see the `std::str` module. +//! For more details, see the [`std::str`] module. +//! +//! [`std::str`]: ../../std/str/index.html #![stable(feature = "rust1", since = "1.0.0")] |
