diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-04-06 12:12:08 -0700 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2016-04-06 12:12:08 -0700 |
| commit | ea28533e251f490ca5034a549a9b2def4464fdf2 (patch) | |
| tree | 343c4934c8a7487149c504f0580a7f233513e6f7 /src/libsyntax/parse | |
| parent | 028c067a7bc5e755a7d57351ce953461a6fba6aa (diff) | |
| parent | 2325cab5fe7314b7f577042e73523df4454f2331 (diff) | |
| download | rust-ea28533e251f490ca5034a549a9b2def4464fdf2.tar.gz rust-ea28533e251f490ca5034a549a9b2def4464fdf2.zip | |
Rollup merge of #32727 - matklad:fix-comment, r=alexcrichton
minor: update old comments No more lifetimes in function types after https://github.com/rust-lang/rust/commit/f945190e6352a1bc965a117569532643319b400f
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 9dc661ed2ea..b8c926f8de9 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1188,12 +1188,12 @@ impl<'a> Parser<'a> { -> PResult<'a, TyKind> { /* - [unsafe] [extern "ABI"] fn <'lt> (S) -> T - ^~~~^ ^~~~^ ^~~~^ ^~^ ^ - | | | | | - | | | | Return type - | | | Argument types - | | Lifetimes + [unsafe] [extern "ABI"] fn (S) -> T + ^~~~^ ^~~~^ ^~^ ^ + | | | | + | | | Return type + | | Argument types + | | | ABI Function Style */ |
