diff --git a/docs/docs/reference/other-new-features/explicit-nulls.md b/docs/docs/reference/other-new-features/explicit-nulls.md index cc9cb00c0df0..11cf8583a1d4 100644 --- a/docs/docs/reference/other-new-features/explicit-nulls.md +++ b/docs/docs/reference/other-new-features/explicit-nulls.md @@ -348,10 +348,10 @@ if (s != null && s.length > 0) { // s: String in `s.length > 0` // s: String } -if (s == null || s.length > 0) // s: String in `s.length > 0` { +if (s == null || s.length > 0) { // s: String in `s.length > 0` // s: String|Null } else { - // s: String|Null + // s: String } ```