Fix old docs

#41158
This commit is contained in:
alexey zabelin 2017-04-12 20:46:44 -04:00
parent 910c4816fd
commit a50737051a
No known key found for this signature in database
GPG Key ID: 3A169985478324E9
2 changed files with 10 additions and 2 deletions

View File

@ -780,6 +780,14 @@ never_type : "!" ;
**FIXME:** grammar?
### Type parameter bounds
```antlr
bound := ty_bound | lt_bound
lt_bound := lifetime
ty_bound := [?] [ for<lt_param_defs> ] simple_path
```
### Self types
**FIXME:** grammar?

View File

@ -4066,7 +4066,7 @@ impl<'a> Parser<'a> {
}).emit();
}
// Parse bounds of a type parameter `BOUND + BOUND + BOUND` without trailing `+`.
// Parse bounds of a type parameter `BOUND + BOUND + BOUND`.
// BOUND = TY_BOUND | LT_BOUND
// LT_BOUND = LIFETIME (e.g. `'a`)
// TY_BOUND = [?] [for<LT_PARAM_DEFS>] SIMPLE_PATH (e.g. `?for<'a: 'b> m::Trait<'a>`)
@ -4107,7 +4107,7 @@ impl<'a> Parser<'a> {
self.parse_ty_param_bounds_common(true)
}
// Parse bounds of a type parameter `BOUND + BOUND + BOUND` without trailing `+`.
// Parse bounds of a type parameter `BOUND + BOUND + BOUND`.
// BOUND = LT_BOUND (e.g. `'a`)
fn parse_lt_param_bounds(&mut self) -> Vec<Lifetime> {
let mut lifetimes = Vec::new();