Skip to content
This repository was archived by the owner on Oct 9, 2018. It is now read-only.

Commit 97fd91a

Browse files
committed
Merge pull request #47 from davekong/patch-1
Update let.md -- follow whitespace style guideline
2 parents df5cee7 + 17f35a6 commit 97fd91a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/let.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Prefer
3434

3535
```rust
3636
let foo = match bar {
37-
Baz => 0,
37+
Baz => 0,
3838
Quux => 1
3939
};
4040
```
@@ -44,7 +44,7 @@ over
4444
```rust
4545
let foo;
4646
match bar {
47-
Baz => {
47+
Baz => {
4848
foo = 0;
4949
}
5050
Quux => {

0 commit comments

Comments
 (0)