Skip to content

Commit 01000fb

Browse files
committed
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.
1 parent f51e64f commit 01000fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
//!
8181
//! Note the documentation for the primitives [`str`] and [`[T]`][slice] (also
8282
//! called 'slice'). Many method calls on [`String`] and [`Vec<T>`] are actually
83-
//! calls to methods on [`str`] and [`[T]`][slice] respectively, via [deref
84-
//! coercions].
83+
//! calls to methods on [`str`] and [`[T]`][slice] respectively, via
84+
//! [deref-coercions].
8585
//!
8686
//! Third, the standard library defines [The Rust Prelude], a small collection
8787
//! of items - mostly traits - that are imported into every module of every
@@ -203,7 +203,7 @@
203203
//! [`use`]: ../book/first-edition/crates-and-modules.html#importing-modules-with-use
204204
//! [crate root]: ../book/first-edition/crates-and-modules.html#basic-terminology-crates-and-modules
205205
//! [crates.io]: https://crates.io
206-
//! [deref coercions]: ../book/second-edition/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods
206+
//! [deref-coercions]: ../book/second-edition/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods
207207
//! [files]: fs/struct.File.html
208208
//! [multithreading]: thread/index.html
209209
//! [other]: #what-is-in-the-standard-library-documentation

0 commit comments

Comments
 (0)