]> granicus.if.org Git - postgresql/commitdiff
Fix spelling error in fuzzystrmatch docs.
authorBruce Momjian <bruce@momjian.us>
Tue, 15 Mar 2011 23:50:02 +0000 (19:50 -0400)
committerBruce Momjian <bruce@momjian.us>
Tue, 15 Mar 2011 23:50:02 +0000 (19:50 -0400)
doc/src/sgml/fuzzystrmatch.sgml

index 01b6e127ba61222b8724a1d2793e3c64fd19cb01..cec336319332c89d86da13c6be0f93f223567bbf 100644 (file)
@@ -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.
    <literal>levenshtein_less_equal</literal> 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 <literal>levenshtein_less_equal</literal>
    returns accurate value of it. Otherwise this function returns value
    which is greater than max_d.