Skip to content

Commit

Permalink
[DOCS] Correct Painless operator typos (elastic#50472)
Browse files Browse the repository at this point in the history
  • Loading branch information
riverbuilding authored and jrodewig committed Dec 30, 2019
1 parent 5e9b629 commit 66959be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ The following table illustrates the resultant bit from the xoring of two bits.

[source,ANTLR4]
----
bitwise_and: expression '^' expression;
bitwise_xor: expression '^' expression;
----

*Promotion*
Expand Down Expand Up @@ -1284,7 +1284,7 @@ The following table illustrates the resultant bit from the oring of two bits.

[source,ANTLR4]
----
bitwise_and: expression '|' expression;
bitwise_or: expression '|' expression;
----

*Promotion*
Expand Down Expand Up @@ -1336,4 +1336,4 @@ def y = x ^ 8; <2>
implicit cast `def` to `int 7`;
bitwise or `int 7` and `int 8` -> `int 15`;
implicit cast `int 15` to `def` -> `def`;
store `def` to `y`
store `def` to `y`

0 comments on commit 66959be

Please sign in to comment.