Skip to content

Commit 0bd84de

Browse files
authored
Merge pull request #2253 from andersk/1607-markdown
text/1607-style-rfcs.md: Markdown formatting fix
2 parents 8ee535b + 68bba15 commit 0bd84de

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

text/1607-style-rfcs.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,15 @@ and newlines after the opening brace and before the closing brace). The former
201201
approach should be used for short struct literals, the latter for longer struct
202202
literals. For tools, the first approach should be used when the width of the
203203
fields (excluding commas and braces) is 16 characters. E.g.,
204-
204+
>
205205
> ```rust
206-
let x = Foo { a: 42, b: 34 };
207-
let y = Foo {
208-
a: 42,
209-
b: 34,
210-
c: 1000
211-
};
212-
```
206+
> let x = Foo { a: 42, b: 34 };
207+
> let y = Foo {
208+
> a: 42,
209+
> b: 34,
210+
> c: 1000
211+
> };
212+
> ```
213213
214214
(Note this is just an example, not a proposed guideline).
215215

0 commit comments

Comments
 (0)