Skip to content

Commit 624cd41

Browse files
authored
Merge pull request #9136 from igfoo/igfoo/qldoc
Kotlin: QLDoc tweaks from intrigus
2 parents 7daba0b + 75ca116 commit 624cd41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/lib/semmle/code/java/Expr.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ class ValueOrReferenceEqualsExpr extends BinaryExpr {
10141014
* A binary expression using either Java or Kotlin's `!=` operator.
10151015
*
10161016
* This might test for reference equality or might function like `Objects.equals`. If you
1017-
* need to distinguish them, use `EQExpr` or `ValueEQExpr` instead.
1017+
* need to distinguish them, use `NEExpr` or `ValueNEExpr` instead.
10181018
*/
10191019
class ValueOrReferenceNotEqualsExpr extends BinaryExpr {
10201020
ValueOrReferenceNotEqualsExpr() { this instanceof NEExpr or this instanceof ValueNEExpr }
@@ -2461,7 +2461,7 @@ class ClassExpr extends Expr, @getclassexpr {
24612461
}
24622462

24632463
/**
2464-
* An statement expression.
2464+
* A statement expression.
24652465
*
24662466
* In some contexts, a Kotlin expression can contain a statement.
24672467
*/

0 commit comments

Comments
 (0)