Skip to content

Commit 4e683e1

Browse files
frewsxcvjooert
authored andcommitted
---
yaml --- r: 209211 b: refs/heads/master c: 0670651 h: refs/heads/master i: 209209: b8686b2 209207: a8da56b v: v3
1 parent 6571977 commit 4e683e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 19cb2a77076657063768e6db342a38933f0ba874
2+
refs/heads/master: 06706510cbb0035b713a32c17291742c8090d9eb
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
55
refs/heads/try: 7b4ef47b7805a402d756fb8157101f64880a522f

trunk/src/doc/style/features/let.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ conditional expression.
6161
Prefer
6262

6363
```rust
64-
s.iter().map(|x| x * 2)
65-
.collect::<Vec<_>>()
64+
let v = s.iter().map(|x| x * 2)
65+
.collect::<Vec<_>>();
6666
```
6767

6868
over

0 commit comments

Comments
 (0)