various: add more missing apostrophes in comments

Updates #cleanup

Change-Id: I79a0fda9783064a226ee9bcee2c1148212f6df7b
Signed-off-by: Alex Chan <alexc@tailscale.com>
This commit is contained in:
Alex Chan
2025-11-17 16:35:36 +00:00
committed by Alex Chan
parent 1e95bfa184
commit 200383dce5
3 changed files with 4 additions and 4 deletions

View File

@@ -678,7 +678,7 @@ func markAncestorIntersectionAUMs(storage Chonk, verdict map[AUMHash]retainState
toScan := make([]AUMHash, 0, len(verdict))
for h, v := range verdict {
if (v & retainAUMMask) == 0 {
continue // not marked for retention, so dont need to consider it
continue // not marked for retention, so don't need to consider it
}
if h == candidateAncestor {
continue
@@ -781,7 +781,7 @@ func markDescendantAUMs(storage Chonk, verdict map[AUMHash]retainState) error {
toScan := make([]AUMHash, 0, len(verdict))
for h, v := range verdict {
if v&retainAUMMask == 0 {
continue // not marked, so dont need to mark descendants
continue // not marked, so don't need to mark descendants
}
toScan = append(toScan, h)
}