diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-04-14 17:49:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-14 17:49:27 +0200 |
| commit | c348bb69d6a7195cc01ce2bcb935e3b6293a2d74 (patch) | |
| tree | e06ea1657bc17ae3d7b1ba86bc75013ec0984193 | |
| parent | 9506f62a7ab10629f10926f2bad8bd7e78e755a8 (diff) | |
| parent | 8f3fd85da4d4a28bba6ff9d9223e578005a0704a (diff) | |
| download | rust-c348bb69d6a7195cc01ce2bcb935e3b6293a2d74.tar.gz rust-c348bb69d6a7195cc01ce2bcb935e3b6293a2d74.zip | |
Rollup merge of #59957 - krk:fix-doctypo-symbol, r=jonas-schievink
Add missing backtick to Symbol documentation.
| -rw-r--r-- | src/libsyntax_pos/symbol.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax_pos/symbol.rs b/src/libsyntax_pos/symbol.rs index 393f52e7de5..d2fb67f8c06 100644 --- a/src/libsyntax_pos/symbol.rs +++ b/src/libsyntax_pos/symbol.rs @@ -136,7 +136,7 @@ impl Decodable for Ident { } /// A symbol is an interned or gensymed string. The use of `newtype_index!` means -/// that `Option<Symbol>` only takes up 4 bytes, because `newtype_index! reserves +/// that `Option<Symbol>` only takes up 4 bytes, because `newtype_index!` reserves /// the last 256 values for tagging purposes. /// /// Note that `Symbol` cannot directly be a `newtype_index!` because it implements |
