summaryrefslogtreecommitdiff
path: root/levenshtein.c
diff options
context:
space:
mode:
authorMike Ralphson <mike@abacus.co.uk>2009-04-17 18:13:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-04-23 02:02:12 (GMT)
commit3ea3c215c02dc4a4e7d0881c25b2223540960797 (patch)
treee6e8e312ae4af706982a1fa1dd9ddfb3faedc2f0 /levenshtein.c
parentbad542f0b1bca3b57e300a21fc7268c1800e6752 (diff)
downloadgit-3ea3c215c02dc4a4e7d0881c25b2223540960797.zip
git-3ea3c215c02dc4a4e7d0881c25b2223540960797.tar.gz
git-3ea3c215c02dc4a4e7d0881c25b2223540960797.tar.bz2
Fix typos / spelling in comments
Signed-off-by: Mike Ralphson <mike@abacus.co.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'levenshtein.c')
-rw-r--r--levenshtein.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/levenshtein.c b/levenshtein.c
index a32f4cd..fc28159 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:
*