aboutsummaryrefslogtreecommitdiff
path: root/docs/dev/README.md
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-06-03 23:48:47 +0100
committerGitHub <[email protected]>2020-06-03 23:48:47 +0100
commit41ae7ed79f75d52179e3553e30e47709a82e693b (patch)
tree17a3013698e26997d5d5aae7e43f792af0db8a75 /docs/dev/README.md
parent65a3cc21edd8acd93b728d094514bafddcb1757a (diff)
Bufgix
Diffstat (limited to 'docs/dev/README.md')
-rw-r--r--docs/dev/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md
index 1de5a2aab..194a40e15 100644
--- a/docs/dev/README.md
+++ b/docs/dev/README.md
@@ -170,7 +170,7 @@ https://www.tedinski.com/2018/02/06/system-boundaries.html
170 170
171We separate import groups with blank lines 171We separate import groups with blank lines
172 172
173``` 173```rust
174mod x; 174mod x;
175mod y; 175mod y;
176 176
@@ -195,7 +195,7 @@ Put `struct`s and `enum`s first, functions and impls last.
195 195
196Do 196Do
197 197
198``` 198```rust
199// Good 199// Good
200struct Foo { 200struct Foo {
201 bars: Vec<Bar> 201 bars: Vec<Bar>
@@ -206,7 +206,7 @@ struct Bar;
206 206
207rather than 207rather than
208 208
209``` 209```rust
210// Not as good 210// Not as good
211struct Bar; 211struct Bar;
212 212