diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-08-08 11:36:09 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-08 11:36:09 +0900 |
| commit | 2c1fe50362d4f5971af3183e3430663c8536c752 (patch) | |
| tree | 1bc4c25ab2527202489d42989b3eb729de9b1e31 | |
| parent | 02bf036c6cf1269c21102591b152bda9c3584bac (diff) | |
| parent | 7d4565bf02a94370a2dce4ab0cfb2c79d61270a1 (diff) | |
| download | rust-2c1fe50362d4f5971af3183e3430663c8536c752.tar.gz rust-2c1fe50362d4f5971af3183e3430663c8536c752.zip | |
Rollup merge of #75259 - giraffate:add_missing_backtick, r=lcnr
Add missing backtick
| -rw-r--r-- | src/librustc_ast/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_ast/ast.rs b/src/librustc_ast/ast.rs index 9337b27e5e9..86b6196590d 100644 --- a/src/librustc_ast/ast.rs +++ b/src/librustc_ast/ast.rs @@ -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, |
