From 7d89fa90bbf2e2295b3434c115d6d4ddf1e1cb4d Mon Sep 17 00:00:00 2001 From: Colin Marks Date: Wed, 11 Aug 2021 17:49:26 +0100 Subject: [PATCH] DEV tweaks to examples text (same as main example) --- features/fuzzySearch/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.