From b774efa9d57a02fbd64dafbe55a059253fbfda4e Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 15 Mar 2011 19:50:02 -0400 Subject: [PATCH] Fix spelling error in fuzzystrmatch docs. --- doc/src/sgml/fuzzystrmatch.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/fuzzystrmatch.sgml b/doc/src/sgml/fuzzystrmatch.sgml index 01b6e127ba..cec3363193 100644 --- a/doc/src/sgml/fuzzystrmatch.sgml +++ b/doc/src/sgml/fuzzystrmatch.sgml @@ -95,7 +95,7 @@ levenshtein_less_equal(text source, text target, int max_d) returns int substitution, respectively. You can omit the cost parameters, as in the second version of the function; in that case they all default to 1. levenshtein_less_equal is accelerated version of - levenshtein functon for low values of distance. If actual distance + levenshtein function for low values of distance. If actual distance is less or equal then max_d, then levenshtein_less_equal returns accurate value of it. Otherwise this function returns value which is greater than max_d.