From 5831dc657a411a5fe2d9a994c09b70116ac5873f Mon Sep 17 00:00:00 2001 From: Taiyue Tan <30404851+ryotokuro@users.noreply.github.com> Date: Wed, 16 Jan 2019 07:34:17 +1100 Subject: [PATCH] fixed spelling errors, added more information (#28297) - logic changes - explanations on different statements --- guide/english/c/if/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guide/english/c/if/index.md b/guide/english/c/if/index.md index fbadbd61fa..cc7ae6bf74 100644 --- a/guide/english/c/if/index.md +++ b/guide/english/c/if/index.md @@ -29,8 +29,7 @@ else { } ``` -Note that the `else` and `else if` sections are not required, while `if` is mandatory. - +Note: `else` and `else if` sections are not required, while `if` is mandatory. Furthermore, `else` and `else if` can only be used following an `if` statement. In the instance when one `if` statement is executed, the following `else if` and `else` statements are ignored. ## Example ```