docs(src/core): readability improvements (#293)

Signed-off-by: Ryan Russell <git@ryanrussell.org>

Signed-off-by: Ryan Russell <git@ryanrussell.org>
This commit is contained in:
Ryan Russell 2022-09-14 07:30:05 -05:00 committed by GitHub
parent 4522f2fdd1
commit 231ef3d367
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

@ -362,7 +362,7 @@ void* DenseSet::PopInternal() {
* 1110 come from hashes 1110XXXXX.... When a table grows to log size 5,
* these entries can move either to 11100 or 11101. So if we traversed with our cursor
* range [0000-1110], it's guaranteed that in grown table we do not need to cover again
* [00000-11100]. Similarly with shrinkage, if a table is shrinked to log size 3,
* [00000-11100]. Similarly with shrinkage, if a table is shrunk to log size 3,
* keys from 1110 and 1111 will move to bucket 111. Again, it's guaranteed that we
* covered the range [000-111] (all keys in that case).
* Returns: next cursor or 0 if reached the end of scan.