From dc09ca3e252b1983f841d3cf3b63a417e828f848 Mon Sep 17 00:00:00 2001 From: jacheg Date: Sun, 4 Nov 2018 17:59:47 -0800 Subject: [PATCH] Updated typo and more info (#21787) --- guide/english/c/if/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/c/if/index.md b/guide/english/c/if/index.md index 54af4b7030b..57bbc933581 100644 --- a/guide/english/c/if/index.md +++ b/guide/english/c/if/index.md @@ -11,7 +11,7 @@ if (condition) { // Do something when `condition` is true } else { - // Do something when `condition` is false + // Do something when original if `condition` is false } ``` @@ -22,7 +22,7 @@ if (condition) { // Do something if `condition` is true } else if (anotherCondition) { - // Do something if `anotherCondition` is ture + // Do something if `anotherCondition` is true } else { // Do something if `condition` AND `anotherCondition` is false