Skip to content

Commit fcfcee1

Browse files
committed
Rollup merge of rust-lang#28470 - tshepang:idiom, r=steveklabnik
2 parents 36190ef + 553a2f1 commit fcfcee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2762,7 +2762,7 @@ The following expressions are equivalent.
27622762
let x = std::ops::Range {start: 0, end: 10};
27632763
let y = 0..10;
27642764
2765-
assert_eq!(x,y);
2765+
assert_eq!(x, y);
27662766
```
27672767

27682768
### Unary operator expressions

0 commit comments

Comments
 (0)