Skip to content

Commit f737830

Browse files
committed
JS: fix typo
1 parent ae4b55d commit f737830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/ql/src/Statements/UselessConditional.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ predicate isExplicitConditional(ASTNode cond, Expr e) {
124124
* `e` and checks its value for truthiness.
125125
*
126126
* The return value of `e` may have other uses besides the truthiness check,
127-
* but if the truthiness check is always goes one way, it still indicates an error.
127+
* but if the truthiness check always goes one way, it still indicates an error.
128128
*/
129129
predicate isConditional(ASTNode cond, Expr e) {
130130
isExplicitConditional(cond, e) or

0 commit comments

Comments
 (0)