From 738fa3553d61683504cf7e7627d4ef4dc7fa38c6 Mon Sep 17 00:00:00 2001 From: apurv22 <36675879+apurv22@users.noreply.github.com> Date: Sat, 15 Dec 2018 11:52:52 +0530 Subject: [PATCH] Updated a sentence to be more meaningful. (#25033) --- 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 d10d2ef0ab..31433233a6 100644 --- a/guide/english/c/loops/index.md +++ b/guide/english/c/loops/index.md @@ -2,7 +2,7 @@ title: Loops of all kinds --- # Loops of all kinds in C -Loops are what you use when you have code that you want to loop, meaning that after it runs, you might want it to loop around to the beginning and run again. There are a few of these in C. +Loops are what you use when you have code that you want to execute more than once, meaning that after it runs, you might want it to loop around to the beginning and run again. There are a few of these in C. They can be categorized as: