Skip to content

Commit 60687e7

Browse files
committed
Address Review Comment
1 parent 3ca01a7 commit 60687e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler-rt/lib/scudo/standalone/allocator_config.def

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ PRIMARY_REQUIRED(const uptr, CompactPtrScale)
6969
// Log2 of the size of a size class region, as used by the Primary.
7070
PRIMARY_REQUIRED(const uptr, RegionSizeLog)
7171

72-
// Conceptually, a region will be divided into groups based on the address range
73-
// Each allocation consumes blocks in the same group until the exhaustion then
74-
// it pops out blocks in a new group. Therefore, `GroupSizeLog` is always
72+
// Conceptually, a region will be divided into groups based on the address
73+
// range. Each allocation consumes blocks in the same group until exhaustion
74+
// then it pops out blocks in a new group. Therefore, `GroupSizeLog` is always
7575
// smaller or equal to `RegionSizeLog`. Note that `GroupSizeLog` needs to be
7676
// equal to `RegionSizeLog` for SizeClassAllocator32 because of certain
7777
// constraints.
@@ -94,7 +94,7 @@ PRIMARY_OPTIONAL(const bool, EnableRandomOffset, false)
9494
//
9595
// Use condition variable to shorten the waiting time of refillment of
9696
// freelist. Note that this depends on the implementation of condition
97-
// variable on each platform and the performance may vary so that it doesn not
97+
// variable on each platform and the performance may vary so that it does not
9898
// guarantee a performance benefit.
9999
PRIMARY_OPTIONAL_TYPE(ConditionVariableT, ConditionVariableDummy)
100100

0 commit comments

Comments
 (0)