Fix typo in console output

Related issue:
https://github.com/uBlockOrigin/uBlock-issues/issues/3901
This commit is contained in:
Raymond Hill 2025-12-17 11:35:46 -05:00
parent daccdf5026
commit abe9cdbef7
No known key found for this signature in database
GPG key ID: F5630CAE62A14316

View file

@ -2972,7 +2972,7 @@ export class AstFilterParser {
const indent = ' '.repeat(walker.depth);
console.log(`${indent}type=${name} "${value}" 0b${bits}`);
if ( this.isNodeTransformed(node) ) {
console.log(`${indent} transform="${this.getNodeTransform(node)}`);
console.log(`${indent} transform="${this.getNodeTransform(node)}"`);
}
}
}