diff options
| author | Niklas Baumstark | 2012-01-24 18:38:22 +0100 |
|---|---|---|
| committer | Niklas Baumstark | 2012-04-10 23:54:38 +0200 |
| commit | 4edbe74415960b095185d4354e82f2171a9728da (patch) | |
| tree | 4c35827dbd1e70fc2f673dfe08f334bf93b8ad21 /lib/completion.js | |
| parent | f69fea31ad8c1e672f908fdf9debd64a5d0fee5e (diff) | |
| download | vimium-4edbe74415960b095185d4354e82f2171a9728da.tar.bz2 | |
fix small bug
Diffstat (limited to 'lib/completion.js')
| -rw-r--r-- | lib/completion.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/completion.js b/lib/completion.js index 35b1d132..d36dc2e5 100644 --- a/lib/completion.js +++ b/lib/completion.js @@ -84,7 +84,7 @@ var completion = (function() { self.cleanMatcherCache = function() { // remove old matchers Object.keys(self.matcherCache).forEach(function(query) { - delete self.matcherCache(queries[i]); + delete self.matcherCache[query]; }); } |
