Skip to content

Commit 80a8b12

Browse files
committed
QL: fix ql/non-doc-block in QL-for-QL
1 parent 706cec3 commit 80a8b12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1877,13 +1877,13 @@ class BinOpExpr extends TBinOpExpr, Expr {
18771877
/** Gets the left operand of the binary expression. */
18781878
Expr getLeftOperand() { none() } // overriden in subclasses
18791879

1880-
/* Gets the right operand of the binary expression. */
1880+
/** Gets the right operand of the binary expression. */
18811881
Expr getRightOperand() { none() } // overriden in subclasses
18821882

18831883
/** Gets the operator of the binary expression. */
18841884
FunctionSymbol getOperator() { none() } // overriden in subclasses
18851885

1886-
/* Gets an operand of the binary expression. */
1886+
/** Gets an operand of the binary expression. */
18871887
final Expr getAnOperand() { result = this.getLeftOperand() or result = this.getRightOperand() }
18881888
}
18891889

0 commit comments

Comments
 (0)