mirror of https://github.com/gorhill/uBlock.git
Fix typo in comment about buffer expiry
The code below the comment specifies 30 seconds, while the comment says 60 seconds. This PR fixes that typo to make the comment indicate 30 seconds.
This commit is contained in:
parent
b87a0a60b8
commit
6e6697fab6
|
@ -27,7 +27,7 @@ let buffer = null;
|
|||
let lastReadTime = 0;
|
||||
let writePtr = 0;
|
||||
|
||||
// After 60 seconds without being read, a buffer will be considered
|
||||
// After 30 seconds without being read, a buffer will be considered
|
||||
// unused, and thus removed from memory.
|
||||
const logBufferObsoleteAfter = 30 * 1000;
|
||||
|
||||
|
|
Loading…
Reference in New Issue