Kotlin: QLDoc tweaks from intrigus

This commit is contained in:
Ian Lynagh
2022-05-12 14:11:35 +01:00
parent e0c74d4390
commit 75ca116ef9

View File

@@ -1014,7 +1014,7 @@ class ValueOrReferenceEqualsExpr extends BinaryExpr {
* A binary expression using either Java or Kotlin's `!=` operator.
*
* This might test for reference equality or might function like `Objects.equals`. If you
* need to distinguish them, use `EQExpr` or `ValueEQExpr` instead.
* need to distinguish them, use `NEExpr` or `ValueNEExpr` instead.
*/
class ValueOrReferenceNotEqualsExpr extends BinaryExpr {
ValueOrReferenceNotEqualsExpr() { this instanceof NEExpr or this instanceof ValueNEExpr }
@@ -2461,7 +2461,7 @@ class ClassExpr extends Expr, @getclassexpr {
}
/**
* An statement expression.
* A statement expression.
*
* In some contexts, a Kotlin expression can contain a statement.
*/