Skip to content

Commit af47cba

Browse files
committed
QL: fix the remaining code-scanning errors for QL-for-QL
1 parent 30f8894 commit af47cba

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ql/ql/src/codeql_ql/ast/Ast.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ class Module extends TModule, ModuleDeclaration {
699699
}
700700

701701
/**
702-
* Something that can be member of a module.
702+
* A member of a module.
703703
*/
704704
class ModuleMember extends TModuleMember, AstNode {
705705
/** Holds if this member is declared as `private`. */

ql/ql/src/ide-contextual-queries/printAst.ql

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ import codeql.IDEContextual
1717
*/
1818
external string selectedSourceFile();
1919

20-
/**
21-
* Overrides the configuration to print only nodes in the selected source file.
22-
*/
20+
// Overrides the configuration to print only nodes in the selected source file.
2321
class Cfg extends PrintAstConfiguration {
2422
override predicate shouldPrintNode(AstNode n) {
2523
super.shouldPrintNode(n) and

0 commit comments

Comments
 (0)