[NFC][sanitizer] Fix typo in comment

This commit is contained in:
Vitaly Buka 2021-12-06 21:17:32 -08:00
parent 3415b1ca63
commit aa407c102d
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ void StackStore::TestOnlyUnmap() {
uptr *StackStore::BlockInfo::Get() const {
// Idiomatic double-checked locking uses memory_order_acquire here. But
// relaxed is find for us, justification is similar to
// relaxed is fine for us, justification is similar to
// TwoLevelMap::GetOrCreate.
return reinterpret_cast<uptr *>(atomic_load_relaxed(&data_));
}