From 797a425665947c5b156a34b421051d168025a97b Mon Sep 17 00:00:00 2001 From: Robin Ferguson <43435700+robinferguson@users.noreply.github.com> Date: Tue, 5 Mar 2019 00:26:31 +0000 Subject: [PATCH] Added code highlighting for while loop (#31676) --- guide/english/python/while-loop-statements/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/while-loop-statements/index.md b/guide/english/python/while-loop-statements/index.md index f5b49e3a72..8d3589b9b2 100644 --- a/guide/english/python/while-loop-statements/index.md +++ b/guide/english/python/while-loop-statements/index.md @@ -50,7 +50,7 @@ Line-by-Line Explanation of the above code: ## Infinite Loops: -As previously noted, a 'while' loop will run until the conditional logic is false. Because of this, it is important to set a "false" condition within the executable code. If no false is included, the while loop will run infinitely. Use caution when setting logic parameters to prevent the infinite loop unless that is the desired output. +As previously noted, a `while` loop will run until the conditional logic is false. Because of this, it is important to set a "false" condition within the executable code. If no false is included, the `while` loop will run infinitely. Use caution when setting logic parameters to prevent the infinite loop unless that is the desired output. A simple example of this would be as follows: