Skip to content

Commit c1dd38e

Browse files
committed
s/BODY/EXPR/
1 parent e909a9d commit c1dd38e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

active/0000-while-let.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on this; if `while let` existed it could have been implemented to map `for PAT i
1717
```rust
1818
// the match here is so `for` can accept an rvalue for the iterator,
1919
// and was used in the "real" desugaring version.
20-
match &mut BODY {
20+
match &mut EXPR {
2121
i => {
2222
while let Some(PAT) = i.next() {
2323
BODY

0 commit comments

Comments
 (0)