From a474e3fa6b07fd98874fde643aaeb9bf7460a286 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 2 May 2015 21:34:39 +0000 Subject: [PATCH] Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236392 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/edit_distance.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.34.1