aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMichael Jones <michaelrj@google.com>2023-04-10 10:01:31 -0700
committerMichael Jones <michaelrj@google.com>2023-04-10 10:02:47 -0700
commitd374d474698001784d0bc0fce4ddfd08fe7d3545 (patch)
treeed3832bf7a143f159f691a532ae0910894bb89ad /libc
parentbfbccfa17c97f29993555fcc4d9f191ba49d9606 (diff)
downloadllvm-d374d474698001784d0bc0fce4ddfd08fe7d3545.zip
llvm-d374d474698001784d0bc0fce4ddfd08fe7d3545.tar.gz
llvm-d374d474698001784d0bc0fce4ddfd08fe7d3545.tar.bz2
[libc][obvious] fix new assert typo
Diffstat (limited to 'libc')
-rw-r--r--libc/src/assert/assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/src/assert/assert.h b/libc/src/assert/assert.h
index 71b7e56..c1f325d 100644
--- a/libc/src/assert/assert.h
+++ b/libc/src/assert/assert.h
@@ -8,7 +8,7 @@
#include "src/assert/__assert_fail.h"
-// There is no header guard here since assert is intended to capable of being
+// There is no header guard here since assert is intended to be capable of being
// included multiple times with NDEBUG defined differently, causing different
// behavior.