From: Nico Weber Date: Sat, 2 May 2015 21:38:43 +0000 (-0700) Subject: Fix typo in comment. X-Git-Tag: v1.6.0^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0f36ad1c72f6100a8957f035769fda50b69919f;p=platform%2Fupstream%2Fninja.git Fix typo in comment. --- 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_;