From 0927361647ffbe1e5e8807a70b8cef16c003cc25 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Tue, 21 Mar 2017 14:09:47 +0100 Subject: [PATCH] Fix typo --- src/jquery.autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.autocomplete.js b/src/jquery.autocomplete.js index 6c562bc..a82610b 100644 --- a/src/jquery.autocomplete.js +++ b/src/jquery.autocomplete.js @@ -134,7 +134,7 @@ }; function _formatResult(suggestion, currentValue) { - // Do not replace anything if there current value is empty + // Do not replace anything if the current value is empty if (!currentValue) { return suggestion.value; }