From 77bb2935cd34ac79241f3b81d6507e5dfbf704df Mon Sep 17 00:00:00 2001 From: kb7hunter <61283239+kb7hunter@users.noreply.github.com> Date: Fri, 13 Nov 2020 18:54:08 -0700 Subject: [PATCH] Update if.adoc The if condition (if true) will execute the FOLLOWING statement, not the preceding statement. --- Language/Structure/Control Structure/if.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Control Structure/if.adoc b/Language/Structure/Control Structure/if.adoc index f1a79934e..f5c300396 100644 --- a/Language/Structure/Control Structure/if.adoc +++ b/Language/Structure/Control Structure/if.adoc @@ -16,7 +16,7 @@ subCategories: [ "Control Structure" ] -- [float] === Description -The `if` statement checks for a condition and executes the proceeding statement or set of statements if the condition is 'true'. +The `if` statement checks for a condition and executes the following statement or set of statements if the condition is 'true'. [%hardbreaks] [float]