aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-03-15 19:50:02 -0400
committerBruce Momjian <bruce@momjian.us>2011-03-15 19:50:02 -0400
commitb774efa9d57a02fbd64dafbe55a059253fbfda4e (patch)
treed689df81718eb08ca345b50fc5e0bba4c6fd27de
parentdf4a9595c20ccd3d3b4ce0e638ca1a5e82546a97 (diff)
downloadpostgresql-b774efa9d57a02fbd64dafbe55a059253fbfda4e.tar.gz
postgresql-b774efa9d57a02fbd64dafbe55a059253fbfda4e.zip
Fix spelling error in fuzzystrmatch docs.
-rw-r--r--doc/src/sgml/fuzzystrmatch.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/fuzzystrmatch.sgml b/doc/src/sgml/fuzzystrmatch.sgml
index 01b6e127ba6..cec33631933 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.
<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.