diff options
Diffstat (limited to 'gitstatus/src/check.h')
-rw-r--r-- | gitstatus/src/check.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitstatus/src/check.h b/gitstatus/src/check.h index 82dceae1..682675a2 100644 --- a/gitstatus/src/check.h +++ b/gitstatus/src/check.h @@ -23,7 +23,7 @@ #include <stdexcept> // The argument must be an expression convertible to bool. -// Does nothing if the expression evalutes to true. Otherwise +// Does nothing if the expression evaluates to true. Otherwise // it's equivalent to LOG(FATAL). #define CHECK(cond...) \ static_cast<void>(0), (!!(cond)) ? static_cast<void>(0) : LOG(FATAL) << #cond << ": " |