Update cpp/ql/lib/semmle/code/cpp/Function.qll

Co-authored-by: intrigus-lgtm <60750685+intrigus-lgtm@users.noreply.github.com>
This commit is contained in:
Jeroen Ketema
2024-08-02 15:59:30 +02:00
committed by GitHub
parent 9744c06933
commit 742922c719

View File

@@ -166,7 +166,7 @@ class Function extends Declaration, ControlFlowNode, AccessHolder, @function {
/**
* Gets the constant expression that determines whether the function is explicit.
*
* For example, for the following code the result is is the expression `sizeof(T) == 1`:
* For example, for the following code the result is the expression `sizeof(T) == 1`:
* ```
* template<typename T> struct C {
* explicit(sizeof(T) == 1)