]> git.lizzy.rs Git - rust.git/commitdiff
Add missing backtick to Symbol documentation.
authorkrk <keremkat@gmail.com>
Sun, 14 Apr 2019 12:27:54 +0000 (14:27 +0200)
committerkrk <keremkat@gmail.com>
Sun, 14 Apr 2019 12:27:54 +0000 (14:27 +0200)
src/libsyntax_pos/symbol.rs

index 393f52e7de517b5d42cb64ae66c1193fc6b242a8..d2fb67f8c066f23cb545c57d26285b7bfd0d8ccf 100644 (file)
@@ -136,7 +136,7 @@ fn decode<D: Decoder>(d: &mut D) -> Result<Ident, D::Error> {
 }
 
 /// 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