From afbf0c984319809f4d7d8a45e5fbc4938a85411a Mon Sep 17 00:00:00 2001 From: Alden Torres Date: Fri, 26 Jun 2020 15:15:33 -0400 Subject: [PATCH] minor doc fix in explicit-nulls.md, fixed inside conditions example --- docs/docs/reference/other-new-features/explicit-nulls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } ```