diff options
| author | Ruud van Asseldonk <dev@veniogames.com> | 2017-08-03 21:17:31 +0200 |
|---|---|---|
| committer | Ruud van Asseldonk <dev@veniogames.com> | 2017-08-13 11:20:52 +0200 |
| commit | 01000fb5c65cf6f8ed8a845bf85dff5f2fe2949f (patch) | |
| tree | 8ab0e63177e0639f2ceb99999084dab8b878c324 /src/libstd | |
| parent | f51e64f7e9aa7c7a6827e3843feb0ed39e145a74 (diff) | |
| download | rust-01000fb5c65cf6f8ed8a845bf85dff5f2fe2949f.tar.gz rust-01000fb5c65cf6f8ed8a845bf85dff5f2fe2949f.zip | |
Replace space in Markdown link label
With the space, the tidy check does not recognize it as a link label. See also the comment above in line_is_url() in src/tools/tidy/src/style.rs.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 36a3550ecec..86bdf606980 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -80,8 +80,8 @@ //! //! Note the documentation for the primitives [`str`] and [`[T]`][slice] (also //! called 'slice'). Many method calls on [`String`] and [`Vec<T>`] are actually -//! calls to methods on [`str`] and [`[T]`][slice] respectively, via [deref -//! coercions]. +//! calls to methods on [`str`] and [`[T]`][slice] respectively, via +//! [deref-coercions]. //! //! Third, the standard library defines [The Rust Prelude], a small collection //! of items - mostly traits - that are imported into every module of every @@ -203,7 +203,7 @@ //! [`use`]: ../book/first-edition/crates-and-modules.html#importing-modules-with-use //! [crate root]: ../book/first-edition/crates-and-modules.html#basic-terminology-crates-and-modules //! [crates.io]: https://crates.io -//! [deref coercions]: ../book/second-edition/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods +//! [deref-coercions]: ../book/second-edition/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods //! [files]: fs/struct.File.html //! [multithreading]: thread/index.html //! [other]: #what-is-in-the-standard-library-documentation |
