Skip to content

Commit

Permalink
s/BODY/EXPR/
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyball committed Aug 29, 2014
1 parent e909a9d commit c1dd38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion active/0000-while-let.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on this; if `while let` existed it could have been implemented to map `for PAT i
```rust
// the match here is so `for` can accept an rvalue for the iterator,
// and was used in the "real" desugaring version.
match &mut BODY {
match &mut EXPR {
i => {
while let Some(PAT) = i.next() {
BODY
Expand Down

0 comments on commit c1dd38e

Please sign in to comment.