Skip to content

Commit 9a7a727

Browse files
cakebakersylvestre
authored andcommitted
Fix end of some files
1 parent a24b0c3 commit 9a7a727

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,3 @@ jobs:
168168
flags: ${{ steps.vars.outputs.CODECOV_FLAGS }}
169169
name: codecov-umbrella
170170
fail_ci_if_error: false
171-

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ doc = false
5151
name = "fuzz_side"
5252
path = "fuzz_targets/fuzz_side.rs"
5353
test = false
54-
doc = false
54+
doc = false

fuzz/fuzz_targets/fuzz_side.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ extern crate libfuzzer_sys;
44

55
use diffutilslib::side_diff;
66

7+
use diffutilslib::params::Params;
78
use std::fs::{self, File};
89
use std::io::Write;
9-
use diffutilslib::params::Params;
1010

1111
fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
1212
let (original, new, /* width, tabsize, */ expand) = x;
@@ -40,4 +40,4 @@ fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
4040
.unwrap()
4141
.write_all(&output_buf)
4242
.unwrap();
43-
});
43+
});

0 commit comments

Comments
 (0)