From 3c5491a8bdf1f99ec6dbd34917a2f842b0933cd7 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Wed, 8 Nov 2023 07:22:23 -0500 Subject: [PATCH] Improve comment --- src/js/static-net-filtering.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 11ec8c153..344c66d45 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -73,8 +73,8 @@ const keyvalStore = typeof vAPI !== 'undefined' // ||+------------------ bit 14: permissions filters // |+------------------- bit 15: urltransform filters // +-------------------- bit 16: replace filters -// TODO: bit 11-16 can be combined into 3-bit value, as these are not to be -// combined. +// TODO: bit 11-16 can be converted into 3-bit value, as these options are not +// meant to be combined. const RealmBitsMask = 0b00000000111; const ActionBitsMask = 0b00000000011;