We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 150417a commit 1ec2bbeCopy full SHA for 1ec2bbe
docs/bugpattern/OperatorPrecedence.md
@@ -14,15 +14,15 @@ misinterpreted.
14
For example, consider this:
15
16
```java
17
-boolean d = (a && b) || c;",
18
-boolean e = (a || b) ? c : d;",
19
-int z = (x + y) << 2;",
+boolean d = (a && b) || c;
+boolean e = (a || b) ? c : d;
+int z = (x + y) << 2;
20
```
21
22
Instead of this:
23
24
25
-boolean r = a && b || c;",
26
-boolean e = a || b ? c : d;",
27
-int z = x + y << 2;",
+boolean r = a && b || c;
+boolean e = a || b ? c : d;
+int z = x + y << 2;
28
0 commit comments