1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

Fix bad copy-paste

This commit is contained in:
Raymond Hill 2021-12-13 13:13:49 -05:00
parent 8e9189f3a9
commit 6c5dcb43da
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1147,7 +1147,7 @@ FilterContainer.prototype.dump = function() {
...Array.from(this.lowlyGeneric.cl.complex.values()).map(a => ` ##.${a}`),
`+ highly.simple: ${this.highlyGeneric.simple.dict.size}`,
...Array.from(this.highlyGeneric.simple.dict).map(a => ` ##${a}`),
`+ highly.complex: ${this.lowlyGeneric.id.simple.size}`,
`+ highly.complex: ${this.highlyGeneric.complex.dict.size}`,
...Array.from(this.highlyGeneric.complex.dict).map(a => ` ##${a}`),
].join('\n');
};