aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorStephen Blott2015-05-27 09:29:04 +0100
committerStephen Blott2015-05-27 09:29:04 +0100
commitb5d3c6e963cd32da41046a16f30307a655089f17 (patch)
treed4934651ade2da482c44fb2a4ecfee6260caed5a /background_scripts
parent0eae69d6cb9b37fe0a41c16888f8af85197e42aa (diff)
downloadvimium-b5d3c6e963cd32da41046a16f30307a655089f17.tar.bz2
Custom-only: fix comment.
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/completion.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee
index 7dbd2e61..40a7c8fd 100644
--- a/background_scripts/completion.coffee
+++ b/background_scripts/completion.coffee
@@ -483,8 +483,8 @@ class SearchEngineCompleter
# aggregated by the MultiCompleter.
filter = (suggestions) ->
suggestions.filter (suggestion) ->
- # We only keep suggestions which either *were* generated by this completion engine, or *could have
- # been* generated by this completion engine (and match the current query).
+ # We only keep suggestions which either *were* generated by this search engine, or *could have
+ # been* generated by this search engine (and match the current query).
suggestion.isSearchSuggestion or suggestion.isCustomSearch or
(
terms = Utils.extractQuery searchUrl, suggestion.url