We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65a3cc2 + 41ae7ed commit 1dba840Copy full SHA for 1dba840
docs/dev/README.md
@@ -170,7 +170,7 @@ https://www.tedinski.com/2018/02/06/system-boundaries.html
170
171
We separate import groups with blank lines
172
173
-```
+```rust
174
mod x;
175
mod y;
176
@@ -195,7 +195,7 @@ Put `struct`s and `enum`s first, functions and impls last.
195
196
Do
197
198
199
// Good
200
struct Foo {
201
bars: Vec<Bar>
@@ -206,7 +206,7 @@ struct Bar;
206
207
rather than
208
209
210
// Not as good
211
struct Bar;
212
0 commit comments