Skip to content

Commit

Permalink
fix(diff): remove duplicated word from comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wincent committed Aug 13, 2023
1 parent 426bdaa commit 2bf1fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/docvim_diff/src/myers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ where
/// first part of the Myers paper. Note that `N` here is the _sum_ of the lengths of the inputs
/// and "D" is the length of the minimal edit script, so, following the convention used elsewhere
/// in the paper (where `N` and `M` refer to the input lengths), we could also write the time and
/// space requirement as `D(N + M)`. Given that the upper bound for `D` is `N + M`, we have have
/// space requirement as `D(N + M)`. Given that the upper bound for `D` is `N + M`, we have
/// quadratic growth which makes this algorithm impractical for anything but the most modest input
/// sizes.
///
Expand Down

0 comments on commit 2bf1fc2

Please sign in to comment.