1
Fork 0

Rollup merge of #59957 - krk:fix-doctypo-symbol, r=jonas-schievink

Add missing backtick to Symbol documentation.
This commit is contained in:
Mazdak Farrokhzad 2019-04-14 17:49:27 +02:00 committed by GitHub
commit c348bb69d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,7 +136,7 @@ impl Decodable for Ident {
} }
/// A symbol is an interned or gensymed string. The use of `newtype_index!` means /// 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. /// the last 256 values for tagging purposes.
/// ///
/// Note that `Symbol` cannot directly be a `newtype_index!` because it implements /// Note that `Symbol` cannot directly be a `newtype_index!` because it implements