Rollup merge of #32727 - matklad:fix-comment, r=alexcrichton

minor: update old comments

No more lifetimes in function types after f945190e63
This commit is contained in:
Steve Klabnik 2016-04-06 12:12:08 -07:00
commit ea28533e25

View File

@ -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
*/