about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorVeetaha <veetaha2@gmail.com>2020-06-04 01:48:47 +0300
committerGitHub <noreply@github.com>2020-06-04 01:48:47 +0300
commit41ae7ed79f75d52179e3553e30e47709a82e693b (patch)
tree17a3013698e26997d5d5aae7e43f792af0db8a75 /docs/dev
parent65a3cc21edd8acd93b728d094514bafddcb1757a (diff)
downloadrust-41ae7ed79f75d52179e3553e30e47709a82e693b.tar.gz
rust-41ae7ed79f75d52179e3553e30e47709a82e693b.zip
Bufgix
Diffstat (limited to 'docs/dev')
-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 1de5a2aab1d..194a40e15c4 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
 
 We separate import groups with blank lines
 
-```
+```rust
 mod x;
 mod y;
 
@@ -195,7 +195,7 @@ Put `struct`s and `enum`s first, functions and impls last.
 
 Do
 
-```
+```rust
 // Good
 struct Foo {
   bars: Vec<Bar>
@@ -206,7 +206,7 @@ struct Bar;
 
 rather than
 
-```
+```rust
 // Not as good
 struct Bar;