From aaba4c098734ad6519a34e86df020cf525083c9b Mon Sep 17 00:00:00 2001 From: Tanmay Arora <43820543+sinbycosmay@users.noreply.github.com> Date: Thu, 21 Feb 2019 05:20:29 +0530 Subject: [PATCH] Explanation.md (#30081) Explained and simplified a few core concepts --- guide/english/python/while-loop-statements/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/python/while-loop-statements/index.md b/guide/english/python/while-loop-statements/index.md index e914bd67e3..f5b49e3a72 100644 --- a/guide/english/python/while-loop-statements/index.md +++ b/guide/english/python/while-loop-statements/index.md @@ -12,8 +12,8 @@ The basic syntax is: ```python counter = 0 while counter < 10: - # Execute the block of code here as - # long as counter is less than 10 + # Execute the block of code here as long as counter is less than 10 + # To prevent an infinite loop, counter is incremented by 1 on each iteration counter += 1 ```