Skip to content

Commit 1dba840

Browse files
bors[bot]Veetaha
andauthored
Merge #4736
4736: Bugfix r=kjeremy a=Veetaha Co-authored-by: Veetaha <[email protected]>
2 parents 65a3cc2 + 41ae7ed commit 1dba840

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/dev/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ https://www.tedinski.com/2018/02/06/system-boundaries.html
170170

171171
We separate import groups with blank lines
172172

173-
```
173+
```rust
174174
mod x;
175175
mod y;
176176

@@ -195,7 +195,7 @@ Put `struct`s and `enum`s first, functions and impls last.
195195

196196
Do
197197

198-
```
198+
```rust
199199
// Good
200200
struct Foo {
201201
bars: Vec<Bar>
@@ -206,7 +206,7 @@ struct Bar;
206206

207207
rather than
208208

209-
```
209+
```rust
210210
// Not as good
211211
struct Bar;
212212

0 commit comments

Comments
 (0)