We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbec99e commit 86123feCopy full SHA for 86123fe
cpp/common/src/codingstandards/cpp/standardlibrary/Assert.qll
@@ -23,7 +23,7 @@ class AssertInvocation extends MacroInvocation {
23
* condition being asserted.
24
*
25
* For example, `assert(x)` may expand to `{ if (!__unlikely(x)) abort(); }`. In this case:
26
- * - We first identify the "outermost conditonal" generated by the macro, which is the `if`
+ * - We first identify the "outermost conditional" generated by the macro, which is the `if`
27
* statement, with the raw condition `!__unlikely(x)`.
28
* - We then analyze the control flow to see if the abort occurs when this raw condition is true
29
* or false. In this case, it aborts when the raw condition `!__unlikely(x)` is true.
0 commit comments