From 52e288423fb18a19e49fa0ec3c02fc8e02482bd4 Mon Sep 17 00:00:00 2001 From: Ankit Mathur Date: Tue, 18 Dec 2018 01:09:20 +0530 Subject: [PATCH] Correcting grammatical errors. (#33528) * Correcting grammatical errors in syntax section. --- guide/english/c/for/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/for/index.md b/guide/english/c/for/index.md index f147587d33..affde042ad 100644 --- a/guide/english/c/for/index.md +++ b/guide/english/c/for/index.md @@ -21,7 +21,7 @@ The `for` loop consists of 3 sections: 2. Condition (stop value) 3. Update Expression (step value) -The initialization statement is executed only once. Then, the condition is evaluated. If the condition is false (0), the `for` loop is terminated. But if the condition is true (nonzero), code inside the block of the `for` loop is executed. Finally, the update expression is executed. This process repeats until the condition is false. +The initialization statement is executed only once. Then, the condition is evaluated. If the condition is false (or 0), the `for` loop is terminated. But if the condition is true (nonzero), code inside the block of the `for` loop is executed. Finally, the update expression is executed. This process repeats until the condition is false. You can leave any of the three field blank: - If you leave initialization blank, then there is no initialization phase