about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkrk <keremkat@gmail.com>2019-04-14 14:27:54 +0200
committerkrk <keremkat@gmail.com>2019-04-14 14:27:54 +0200
commit8f3fd85da4d4a28bba6ff9d9223e578005a0704a (patch)
treed21c9fa508b8f0e0e802f841c40ae9d32e3f412e
parent60076bb8f7e7ca7fc98ca432cda86dbdce7c0417 (diff)
Add missing backtick to Symbol documentation.
-rw-r--r--src/libsyntax_pos/symbol.rs2
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