Skip to content

Commit 20ef634

Browse files
committed
Fix missing space in comment
1 parent 6a21fa5 commit 20ef634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/common/src/codingstandards/cpp/rules/identifierhidden/IdentifierHidden.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ predicate hiddenInLambda(UserVariable outerDecl, UserVariable innerDecl) {
4141
outerScope.getADeclaration() = outerDecl and
4242
lambdaExprScope.getStrictParent*() = outerScope and
4343
(
44-
// A definition can be hidden if it is in scope and it iscaptured by the lambda,
44+
// A definition can be hidden if it is in scope and it is captured by the lambda,
4545
exists(LambdaCapture cap |
4646
lambdaExpr.getACapture() = cap and
4747
// The outer declaration is captured by the lambda

0 commit comments

Comments
 (0)