From 6c5dcb43dac9724d2cfdbb116ae880bea006177a Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 13 Dec 2021 13:13:49 -0500 Subject: [PATCH] Fix bad copy-paste --- src/js/cosmetic-filtering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/cosmetic-filtering.js b/src/js/cosmetic-filtering.js index f7027f8a9..2dfa88921 100644 --- a/src/js/cosmetic-filtering.js +++ b/src/js/cosmetic-filtering.js @@ -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'); };