From da6fa7adfc3b27fa92e83ef8fae24ec6dc88a722 Mon Sep 17 00:00:00 2001 From: Geoffrey White <40627776+geoffw0@users.noreply.github.com> Date: Wed, 13 Nov 2019 15:52:49 +0000 Subject: [PATCH] Update cpp/ql/src/semmle/code/cpp/Type.qll Co-Authored-By: Jonas Jensen --- cpp/ql/src/semmle/code/cpp/Type.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/ql/src/semmle/code/cpp/Type.qll b/cpp/ql/src/semmle/code/cpp/Type.qll index a7ee53f0d18..bef121d5621 100644 --- a/cpp/ql/src/semmle/code/cpp/Type.qll +++ b/cpp/ql/src/semmle/code/cpp/Type.qll @@ -381,7 +381,7 @@ private predicate isIntegralType(@builtintype type, int kind) { /** * A C/C++ integral or `enum` type. * - * The definition of "integral type" in the C++ Standard excludes `enum` types, + * The definition of "integral type" in the C++ standard excludes `enum` types, * but because an `enum` type holds a value of its underlying integral type, * it is often useful to have a common category that includes both integral * and `enum` types.