From: Nico Weber Date: Sat, 2 May 2015 21:34:39 +0000 (+0000) Subject: Fix typo in comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a474e3fa6b07fd98874fde643aaeb9bf7460a286;p=oota-llvm.git Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236392 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/edit_distance.h b/include/llvm/ADT/edit_distance.h index 9ee1edc54e0..c2b2041242a 100644 --- a/include/llvm/ADT/edit_distance.h +++ b/include/llvm/ADT/edit_distance.h @@ -50,7 +50,7 @@ unsigned ComputeEditDistance(ArrayRef FromArray, ArrayRef ToArray, // 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. typename ArrayRef::size_type m = FromArray.size(); typename ArrayRef::size_type n = ToArray.size();