Fix comment

Co-authored-by: Saq Imtiaz <saq.imtiaz@gmail.com>
This commit is contained in:
Jeremy Ruston 2026-01-20 15:43:04 +00:00 committed by GitHub
parent f2fbcf60a2
commit 0ffb4d988b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -173,7 +173,7 @@ exports.parseFilter = function(filterString) {
match = operandRegExp.exec(filterString);
if(match && match.index === p) {
if(match[1]) {
// If there is a filter run prefix
// If there is a filter pragma
operation.pragma = match[1];
operation.suffix = match[2];
p = p + operation.pragma.length;