We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6571977 commit 4e683e1Copy full SHA for 4e683e1
[refs]
@@ -1,5 +1,5 @@
1
---
2
-refs/heads/master: 19cb2a77076657063768e6db342a38933f0ba874
+refs/heads/master: 06706510cbb0035b713a32c17291742c8090d9eb
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
5
refs/heads/try: 7b4ef47b7805a402d756fb8157101f64880a522f
trunk/src/doc/style/features/let.md
@@ -61,8 +61,8 @@ conditional expression.
61
Prefer
62
63
```rust
64
-s.iter().map(|x| x * 2)
65
- .collect::<Vec<_>>()
+let v = s.iter().map(|x| x * 2)
+ .collect::<Vec<_>>();
66
```
67
68
over
0 commit comments