From 8f3fd85da4d4a28bba6ff9d9223e578005a0704a Mon Sep 17 00:00:00 2001 From: krk Date: Sun, 14 Apr 2019 14:27:54 +0200 Subject: [PATCH] Add missing backtick to Symbol documentation. --- src/libsyntax_pos/symbol.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax_pos/symbol.rs b/src/libsyntax_pos/symbol.rs index 393f52e7de51..d2fb67f8c066 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` only takes up 4 bytes, because `newtype_index! reserves +/// that `Option` 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