Skip to content

Commit dde8d32

Browse files
authored
Apply suggestions from code review
Minor qldoc fixes.
1 parent 703336a commit dde8d32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ class ArrayCreationExpr extends Expr, @arraycreationexpr {
463463
*
464464
* This expression type matches array initializers representing the values for
465465
* annotation elements as well, despite the Java Language Specification considering
466-
* them a separate type, *ElementValueArrayInitializer*. It does however not match
466+
* them a separate type, `ElementValueArrayInitializer`. It does however not match
467467
* values for an array annotation element which consist of a single element
468468
* without enclosing curly brackets (as per JLS).
469469
*/
@@ -480,7 +480,7 @@ class ArrayInit extends Expr, @arrayinit {
480480
Expr getInit(int index) { result = this.getAnInit() and result.getIndex() = index }
481481

482482
/**
483-
* Gets the number of expressions in this initializer, i.e. the size the
483+
* Gets the number of expressions in this initializer, that is, the size the
484484
* created array will have.
485485
*/
486486
int getSize() { result = count(getAnInit()) }

0 commit comments

Comments
 (0)