my fork of dmp
Diffstat (limited to 'benches/diff.rs')
-rw-r--r--benches/diff.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/benches/diff.rs b/benches/diff.rs
index dcd9330..249359a 100644
--- a/benches/diff.rs
+++ b/benches/diff.rs
@@ -9,7 +9,7 @@ fn diff_main(c: &mut Criterion) {
let new = std::fs::read_to_string(basedir.join("txt_new.txt")).unwrap();
let dmp = DiffMatchPatch::default();
-
+
c.bench_function("diff-match-patch", |bencher| {
bencher.iter(|| dmp.diff_main(&old, &new).unwrap());
});