Skip to content

Commit

Permalink
Fix javadoc of Expression#infixEquals
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 342200433
  • Loading branch information
jDramaix authored and Copybara-Service committed Nov 13, 2020
1 parent 06f9f1a commit 52fa505
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -129,7 +129,7 @@ public Expression infixBitwiseOr(Expression rhs) {
return infix(BinaryOperator.BIT_OR, this, rhs);
}

/** Return an expression representing {@code this != rhs}. */
/** Return an expression representing {@code this == rhs}. */
public Expression infixEquals(Expression rhs) {
return infix(BinaryOperator.EQUALS, this, rhs);
}
Expand Down

0 comments on commit 52fa505

Please sign in to comment.