不要怂,就是干,撸起袖子干!

Commit ec0cb5ed by tobybro32 Committed by Sushant

fix(query/abstract): typo in error message (#9201)

1 parent 02aa569e
Showing with 1 additions and 1 deletions
...@@ -2286,7 +2286,7 @@ const QueryGenerator = { ...@@ -2286,7 +2286,7 @@ const QueryGenerator = {
return value; return value;
} }
if (comparator === undefined) { if (comparator === undefined) {
throw new Error(`${key} and ${value} has no comperator`); throw new Error(`${key} and ${value} has no comparator`);
} }
key = this._getSafeKey(key, prefix); key = this._getSafeKey(key, prefix);
return [key, value].join(' '+comparator+' '); return [key, value].join(' '+comparator+' ');
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!