From 5c2d67ca7a14cfad94a5718ea62ad1b4d31f73b6 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Sun, 26 Jun 2016 23:10:25 -0700 Subject: Don't consider numbers word separators This made sense on paper when deciding what was a "word". However in reality this is rarely an indication of a separate word. I've found that this caused hexadecimal or base64 strings to be favoured in matches. --- ALGORITHM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ALGORITHM.md') diff --git a/ALGORITHM.md b/ALGORITHM.md index f4f9b27..9bb4e56 100644 --- a/ALGORITHM.md +++ b/ALGORITHM.md @@ -69,7 +69,7 @@ is able to score based on the optimal match. * Matches (positive score) * consecutive * following a slash - * following a space, underscore, dash, or number (the start of a word) + * following a space, underscore, or dash (the start of a word) * capital letter (the start of a CamelCase word) * following a dot (often a file extension) -- cgit v1.2.3