We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4171fd7 commit 09fd394Copy full SHA for 09fd394
docs/bugpattern/NullTernary.md
@@ -4,7 +4,7 @@ If a conditional expression evaluates to `null`, unboxing it will result in a
4
For example:
5
6
```java
7
-int x = flag ? foo : null:
+int x = flag ? foo : null;
8
```
9
10
If `flag` is false, `null` will be auto-unboxed from an `Integer` to `int`,
0 commit comments