diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-06-15 17:40:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-15 17:40:17 +0900 |
| commit | 74cc63a7a5ded7c4c0e12cd5e4dc4838be914b78 (patch) | |
| tree | 6a352e94f07a8d35c49b0b07833aded0f1e528b2 | |
| parent | 52dab2e963fca2cd23ea914b17bf8133ff12d68c (diff) | |
| parent | 7cd750f16f024e807efb992dc55f7ceeb91c8925 (diff) | |
| download | rust-74cc63a7a5ded7c4c0e12cd5e4dc4838be914b78.tar.gz rust-74cc63a7a5ded7c4c0e12cd5e4dc4838be914b78.zip | |
Rollup merge of #86314 - Veykril:patch-2, r=JohnTitor
Remove trailing triple backticks in `mut_keyword` docs
| -rw-r--r-- | library/std/src/keyword_docs.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs index 5b8e83766f0..c2d21ad23ac 100644 --- a/library/std/src/keyword_docs.rs +++ b/library/std/src/keyword_docs.rs @@ -1092,8 +1092,7 @@ mod move_keyword {} /// Mutable raw pointers work much like mutable references, with the added /// possibility of not pointing to a valid object. The syntax is `*mut Type`. /// -/// More information on mutable references and pointers can be found in``` -/// [Reference]. +/// More information on mutable references and pointers can be found in the [Reference]. /// /// [Reference]: ../reference/types/pointer.html#mutable-references-mut mod mut_keyword {} |
