From 0ffb4d988b43a99d3b04b03136ff02f21bee4e7b Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 20 Jan 2026 15:43:04 +0000 Subject: [PATCH] Fix comment Co-authored-by: Saq Imtiaz --- core/modules/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/filters.js b/core/modules/filters.js index 7dc9f9f33..f5e2af875 100644 --- a/core/modules/filters.js +++ b/core/modules/filters.js @@ -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;