diff --git a/Line-Based-Diffs.md b/Line-Based-Diffs.md index b1dbafb..f1ea11e 100644 --- a/Line-Based-Diffs.md +++ b/Line-Based-Diffs.md @@ -16,7 +16,7 @@ $ diff --color=always -u sample_files/css_before.css sample_files/css_after.css ### Patience Diff -Myer's diff has a problem with sliders: +Myers diff has a problem with sliders: ```diff if (!$smtp_server) { @@ -105,12 +105,6 @@ $ diff -y --color=always sample_files/css_before.css sample_files/css_after.css [prettydiff](https://github.com/romankoblov/prettydiff) does really well out of the box with the sample files here. It implements LCS on words. -### wu-diff - -[wu-diff](https://crates.io/crates/wu-diff) doesn't have much -documentation, but it gives the same results as other LCS -implementations in Rust. - ### delta [delta](https://github.com/dandavison/delta) performs line based diffs, then uses levenshtein distance to highlight parts within the line. It also offers syntax highlighting.