text/1607-style-rfcs.md: Markdown formatting fix

The previous rendering had half the page trapped in an unterminated
code block.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg 2017-12-21 04:23:48 -05:00
parent 8ee535b4fc
commit 68bba1594c
1 changed files with 8 additions and 8 deletions

View File

@ -201,15 +201,15 @@ and newlines after the opening brace and before the closing brace). The former
approach should be used for short struct literals, the latter for longer struct
literals. For tools, the first approach should be used when the width of the
fields (excluding commas and braces) is 16 characters. E.g.,
>
> ```rust
let x = Foo { a: 42, b: 34 };
let y = Foo {
a: 42,
b: 34,
c: 1000
};
```
> let x = Foo { a: 42, b: 34 };
> let y = Foo {
> a: 42,
> b: 34,
> c: 1000
> };
> ```
(Note this is just an example, not a proposed guideline).