diff --git a/features/fuzzySearch/index.html b/features/fuzzySearch/index.html index b2672c8..f2218bd 100644 --- a/features/fuzzySearch/index.html +++ b/features/fuzzySearch/index.html @@ -70,13 +70,13 @@ $(document).ready(function() {

Fuzzy searching is used in search engines and databases to perform searches that will match results that are not necessarily exactly the same as the search term. This allows spelling mistakes and typos to be accounted for. It also allows small changes in dialect not to affect search results. A commonly used example is for surname searching. "Smith" and "Smythe" are pronounced the same way, but using conventional searching typing "Smith" would not return "Smythe".

-

This plug-in adds fuzzy search functionality to datatables. It does this through a combination of exact matching and the damerau-levenshtein algorithm. There are four initialisation options that are associated with this +

This plug-in adds fuzzy search functionality to DataTables. It does this through a combination of exact matching and the Damerau-Levenshtein algorithm. There are four initialisation options that are associated with this plugin.