diff --git a/cpp/ql/src/semmle/code/cpp/Type.qll b/cpp/ql/src/semmle/code/cpp/Type.qll index 367a3fffa14..a7ee53f0d18 100644 --- a/cpp/ql/src/semmle/code/cpp/Type.qll +++ b/cpp/ql/src/semmle/code/cpp/Type.qll @@ -355,7 +355,7 @@ private predicate isArithmeticType(@builtintype type, int kind) { * * This includes primitive types on which arithmetic, bitwise or logical * operations may be performed. Examples of arithmetic types include - * `char`, `int`, `float` and `bool`. + * `char`, `int`, `float`, and `bool`. */ class ArithmeticType extends BuiltInType { ArithmeticType() { isArithmeticType(underlyingElement(this), _) }