about summary refs log tree commit diff
path: root/src/libstd/keyword_docs.rs
diff options
context:
space:
mode:
authoriirelu <anna@bawk.space>2018-09-26 18:37:46 +0200
committeriirelu <anna@bawk.space>2018-09-26 18:37:46 +0200
commit619dfeb514d101ea167a850ef1cd338dc4759e23 (patch)
tree23203f1b903c1e6148a5b7969d0d9e482d25e948 /src/libstd/keyword_docs.rs
parent577dbc8519be61c1318b242c6c7fc15bbdf3b4b7 (diff)
downloadrust-619dfeb514d101ea167a850ef1cd338dc4759e23.tar.gz
rust-619dfeb514d101ea167a850ef1cd338dc4759e23.zip
Remove the last broken link.
Dangit. I really thought I got them all.
Diffstat (limited to 'src/libstd/keyword_docs.rs')
-rw-r--r--src/libstd/keyword_docs.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/keyword_docs.rs b/src/libstd/keyword_docs.rs
index dc78accc69f..1e801373736 100644
--- a/src/libstd/keyword_docs.rs
+++ b/src/libstd/keyword_docs.rs
@@ -538,7 +538,7 @@ mod impl_keyword { }
 /// book][book1] for more information on pattern matching. The type of the pattern is optionally
 /// given afterwards, but if left blank is automatically inferred by the compiler if possible.
 ///
-/// Variables in Rust are immutable by default, and require the [`mut`] keyword to be made mutable.
+/// Variables in Rust are immutable by default, and require the `mut` keyword to be made mutable.
 ///
 /// Multiple variables can be defined with the same name, known as shadowing. This doesn't affect
 /// the original variable in any way beyond being unable to directly access it beyond the point of
@@ -561,7 +561,6 @@ mod impl_keyword { }
 /// For more information on the `let` keyword, see the [Rust book] or the [Reference]
 ///
 /// [book1]: https://doc.rust-lang.org/stable/book/2018-edition/ch06-02-match.html
-/// [`mut`]: keyword.mut.html
 /// [`if`]: keyword.if.html
 /// [book2]:
 /// https://doc.rust-lang.org/stable/book/2018-edition/ch18-01-all-the-places-for-patterns.html#let-statements