diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2023-08-10 10:32:33 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2023-08-10 10:32:33 +0300 |
commit | 2d9c1f271b67c2f4553d814b27eb79e5bf6c691e (patch) | |
tree | c39f02fa662f966e87caf987a95d4aa4ff1ca657 /gitstatus/src/check.h | |
parent | 717f9a1881c1bd179658951b8628f1b395c1cb11 (diff) | |
parent | 22cb2f79ddb89a368dd823e815fa1b0587ff1b6a (diff) |
Merge commit '22cb2f79ddb89a368dd823e815fa1b0587ff1b6a'
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 << ": " |