diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_stack_store.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_stack_store.cpp index af10f3a4011cd..1502aae2e9310 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_stack_store.cpp +++ b/compiler-rt/lib/sanitizer_common/sanitizer_stack_store.cpp @@ -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(atomic_load_relaxed(&data_)); }