[libc][obvious] fix phrasing in assert comment
authorMichael Jones <michaelrj@google.com>
Fri, 7 Apr 2023 18:50:43 +0000 (11:50 -0700)
committerMichael Jones <michaelrj@google.com>
Fri, 7 Apr 2023 18:51:44 +0000 (11:51 -0700)
libc/src/assert/assert.h

index 46cfe3b..71b7e56 100644 (file)
@@ -8,9 +8,9 @@
 
 #include "src/assert/__assert_fail.h"
 
-// There is no header guard here since assert is intended to be able to be
-// able to be included multiple times with NDEBUG defined differently, causing
-// different behavior.
+// There is no header guard here since assert is intended to capable of being
+// included multiple times with NDEBUG defined differently, causing different
+// behavior.
 
 #undef assert
 
@@ -18,6 +18,7 @@
 #define assert(e) (void)0
 #else
 #define assert(e)                                                              \
-  ((e) ? (void)0 :                                                             \
-    __llvm_libc::__assert_fail(#e, __FILE__, __LINE__, __PRETTY_FUNCTION__))
+  ((e) ? (void)0                                                               \
+       : __llvm_libc::__assert_fail(#e, __FILE__, __LINE__,                    \
+                                    __PRETTY_FUNCTION__))
 #endif