summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorBogdan Vetrenko <68546200+b0gdnv@users.noreply.github.com>2025-07-10 01:44:10 +0300
committerGitHub <noreply@github.com>2025-07-09 15:44:10 -0700
commit071e30220db187c47131a02ce36c3697f61ce393 (patch)
treebe9bdcd61f29694e10493a4e02bec5e2a78e69e1 /libc
parentf1acd69bfed039e8fc0e5e5cc44e3111b8081ad2 (diff)
[libc][NFC] fix comment typo ("documentation") (#147836)
Diffstat (limited to 'libc')
-rw-r--r--libc/src/__support/CPP/atomic.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/src/__support/CPP/atomic.h b/libc/src/__support/CPP/atomic.h
index 2f00b3ed3281..53b583c04ba1 100644
--- a/libc/src/__support/CPP/atomic.h
+++ b/libc/src/__support/CPP/atomic.h
@@ -28,7 +28,8 @@ enum class MemoryOrder : int {
SEQ_CST = __ATOMIC_SEQ_CST
};
-// These are a clang extension, see the clang documenation for more information:
+// These are a clang extension, see the clang documentation for more
+// information:
// https://clang.llvm.org/docs/LanguageExtensions.html#scoped-atomic-builtins.
enum class MemoryScope : int {
#if defined(__MEMORY_SCOPE_SYSTEM) && defined(__MEMORY_SCOPE_DEVICE)