From 3ac13d20283f8c5aae0e1f30804b328a9de8e74d Mon Sep 17 00:00:00 2001 From: Phil H Date: Thu, 23 Sep 2021 09:22:28 -0700 Subject: Correct levenshtein distance --- src/common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common.cpp') diff --git a/src/common.cpp b/src/common.cpp index 9497aaf18..3216a8725 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -974,8 +974,8 @@ MemoryMappedFileError memory_map_file_32(char const *fullpath, MemoryMappedFile #define USE_DAMERAU_LEVENSHTEIN 1 isize levenstein_distance_case_insensitive(String const &a, String const &b) { - isize w = a.len+1; - isize h = b.len+1; + isize w = b.len+1; + isize h = a.len+1; isize *matrix = gb_alloc_array(temporary_allocator(), isize, w*h); for (isize i = 0; i <= a.len; i++) { matrix[i*w + 0] = i; -- cgit v1.2.3