Skip to content

Commit

Permalink
updated edit history section to account for commit 13fcc38
Browse files Browse the repository at this point in the history
  • Loading branch information
pnkfelix committed Nov 30, 2015
1 parent fa24ae5 commit 602bb54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text/0550-macro-future-proofing.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ reasonable freedom and can be extended in the future.
* replaced detailed design with a specification-oriented presentation rather than an implementation-oriented algorithm.
* fixed some oversights in the specification (that led to matchers like `break { stuff }` being accepted),
* expanded the follows sets for `ty` to include `OpenDelim(Brace), Ident(where), Or` (since Rust's grammar already requires all of `|foo:TY| {}`, `fn foo() -> TY {}` and `fn foo() -> TY where {}` to work).
* expanded the follow set for `pat` to include `Or` (since Rust's grammar already requires `match (true,false) { PAT | PAT => {} }` and `|PAT| {}` to work). See also [RFC issue 1336][].
* expanded the follow set for `pat` to include `Or` (since Rust's grammar already requires `match (true,false) { PAT | PAT => {} }` and `|PAT| {}` to work); see also [RFC issue 1336][]. Also added `If` and `In` to follow set for `pat` (to make the specifiation match the old implementation).

[RFC issue 1336]: https://github.com/rust-lang/rfcs/issues/1336

Expand Down

0 comments on commit 602bb54

Please sign in to comment.