Skip to content

Commit 0cd8c3a

Browse files
committed
rustfmt the repository rust-lang#398
1 parent 2953e96 commit 0cd8c3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utils/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ mod tests {
130130
fn whitespace_outside_of_codeblock_header_is_preserved() {
131131
let input = r#"
132132
some text with spaces
133-
```rust
133+
```rust
134134
fn main() {
135135
// code inside is unchanged
136136
}
@@ -180,7 +180,7 @@ more text with spaces
180180
#[test]
181181
fn rust_code_block_without_properties_has_proper_html_class() {
182182
let input = r#"
183-
```rust
183+
```rust
184184
```
185185
"#;
186186

@@ -190,7 +190,7 @@ more text with spaces
190190
assert_eq!(render_markdown(input, true), expected);
191191

192192
let input = r#"
193-
```rust
193+
```rust
194194
```
195195
"#;
196196
assert_eq!(render_markdown(input, false), expected);

0 commit comments

Comments
 (0)