Skip to content

Commit 619dfeb

Browse files
committedSep 26, 2018
Remove the last broken link.
Dangit. I really thought I got them all.
1 parent 577dbc8 commit 619dfeb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/libstd/keyword_docs.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ mod impl_keyword { }
538538
/// book][book1] for more information on pattern matching. The type of the pattern is optionally
539539
/// given afterwards, but if left blank is automatically inferred by the compiler if possible.
540540
///
541-
/// Variables in Rust are immutable by default, and require the [`mut`] keyword to be made mutable.
541+
/// Variables in Rust are immutable by default, and require the `mut` keyword to be made mutable.
542542
///
543543
/// Multiple variables can be defined with the same name, known as shadowing. This doesn't affect
544544
/// the original variable in any way beyond being unable to directly access it beyond the point of
@@ -561,7 +561,6 @@ mod impl_keyword { }
561561
/// For more information on the `let` keyword, see the [Rust book] or the [Reference]
562562
///
563563
/// [book1]: https://doc.rust-lang.org/stable/book/2018-edition/ch06-02-match.html
564-
/// [`mut`]: keyword.mut.html
565564
/// [`if`]: keyword.if.html
566565
/// [book2]:
567566
/// https://doc.rust-lang.org/stable/book/2018-edition/ch18-01-all-the-places-for-patterns.html#let-statements

0 commit comments

Comments
 (0)
Please sign in to comment.