From f0f36ad1c72f6100a8957f035769fda50b69919f Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 2 May 2015 14:38:43 -0700 Subject: [PATCH] Fix typo in comment. --- src/edit_distance.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/edit_distance.cc b/src/edit_distance.cc index 9553c6e..a6719d3 100644 --- a/src/edit_distance.cc +++ b/src/edit_distance.cc @@ -28,7 +28,7 @@ int EditDistance(const StringPiece& s1, // http://en.wikipedia.org/wiki/Levenshtein_distance // // Although the algorithm is typically described using an m x n - // array, only two rows are used at a time, so this implemenation + // array, only two rows are used at a time, so this implementation // just keeps two separate vectors for those two rows. int m = s1.len_; int n = s2.len_; -- 2.7.4