Rollup merge of #75259 - giraffate:add_missing_backtick, r=lcnr

Add missing backtick
This commit is contained in:
Yuki Okushi 2020-08-08 11:36:09 +09:00 committed by GitHub
commit 2c1fe50362
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -378,7 +378,7 @@ impl Default for Generics {
#[derive(Clone, RustcEncodable, RustcDecodable, Debug)]
pub struct WhereClause {
/// `true` if we ate a `where` token: this can happen
/// if we parsed no predicates (e.g. `struct Foo where {}
/// if we parsed no predicates (e.g. `struct Foo where {}`).
/// This allows us to accurately pretty-print
/// in `nt_to_tokenstream`
pub has_where_token: bool,