X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=levenshtein.c;h=fc281597fd2fd5ad2299eab0848da99355e383fc;hb=e8344e866655cfae1f870d7e8d5046c1bdf08adf;hp=a32f4cdc458f823f7e8754742d2f8e21b2aabff3;hpb=4258c212ca2c3674be4b7e00a19db705eee77a48;p=git.git diff --git a/levenshtein.c b/levenshtein.c index a32f4cdc4..fc281597f 100644 --- a/levenshtein.c +++ b/levenshtein.c @@ -27,7 +27,7 @@ * * It does so by calculating the costs of the path ending in characters * i (in string1) and j (in string2), respectively, given that the last - * operation is a substition, a swap, a deletion, or an insertion. + * operation is a substitution, a swap, a deletion, or an insertion. * * This implementation allows the costs to be weighted: *