From 6e5a36f960f3779c0a8d3a4904a8a747c053f516 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Tue, 25 Jun 2019 21:59:18 +0530 Subject: [PATCH] Update else.adoc --- Language/Structure/Control Structure/else.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Control Structure/else.adoc b/Language/Structure/Control Structure/else.adoc index 64ce1afe3..91580ad85 100644 --- a/Language/Structure/Control Structure/else.adoc +++ b/Language/Structure/Control Structure/else.adoc @@ -19,7 +19,7 @@ The `if...else` allows greater control over the flow of code than the basic link Each test will proceed to the next one until a true test is encountered. When a true test is found, its associated block of code is run, and the program then skips to the line following the entire if/else construction. If no test proves to be true, the default `else` block is executed, if one is present, and sets the default behavior. [%hardbreaks] -Note that an `else if` block may be used with or without a terminating `else` block and vice versa. An unlimited number of such `else if` branches is allowed. +Note that an `else if` block may be used with or without a terminating `else` block and vice versa. An unlimited number of such `else if` branches are allowed. [float] === Syntax