From 1fa6cee4205cbd1befd5356f92c3a8669220c623 Mon Sep 17 00:00:00 2001 From: katiepillar6 <44276821+katiepillar6@users.noreply.github.com> Date: Sun, 4 Nov 2018 22:58:17 -0800 Subject: [PATCH] changed a to b (#21770) Changed (a) to (b) so it makes sense and reads logically. --- guide/english/c/loops/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/loops/index.md b/guide/english/c/loops/index.md index 14b4cd15d7..a0a62c7725 100644 --- a/guide/english/c/loops/index.md +++ b/guide/english/c/loops/index.md @@ -8,7 +8,7 @@ Loops are what you use when you have code that you want to loop, meaning that af They can be categorized as: (a) Entry controlled loops- Loops in which the condition is checked before every iteration. e.g. for loop, while loop -(a) Exit controlled loop- Loops in which the execution takes place once even if the condition is false. e.g. for do-while loop +(b) Exit controlled loop- Loops in which the execution takes place once even if the condition is false. e.g. for do-while loop ## While loops