mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-15 20:45:46 +01:00
Camel-case some identifiers gone rogue.
Do not free a camel of the burden of his hump; you may be freeing him from being a camel. - G. K. Chesterton
This commit is contained in:
@@ -262,7 +262,7 @@ const CompletionContext = Class("CompletionContext", {
|
||||
get completions() this._completions || [],
|
||||
set completions(items) {
|
||||
// Accept a generator
|
||||
if (!isarray(items))
|
||||
if (!isArray(items))
|
||||
items = [x for (x in Iterator(items))];
|
||||
if (this._completions !== items) {
|
||||
delete this.cache.filtered;
|
||||
|
||||
Reference in New Issue
Block a user