Wrapping control_brace_style="AlwaysNextLine" snippet in function

This commit is contained in:
David Alber
2018-01-14 16:49:30 -08:00
parent d49e22a2b8
commit ba7f3ab718
+9 -7
View File
@@ -541,13 +541,15 @@ fn main() {
#### `"AlwaysNextLine"`:
```rust
if lorem
{
println!("ipsum!");
}
else
{
println!("dolor!");
fn main() {
if lorem
{
println!("ipsum!");
}
else
{
println!("dolor!");
}
}
```