changed a to b (#21770)

Changed (a) to (b) so it makes sense and reads logically.
This commit is contained in:
katiepillar6
2018-11-04 22:58:17 -08:00
committed by Manish Giri
parent 1675636976
commit 1fa6cee420

View File

@ -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: 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) 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 ## While loops