From 006d69e427c3487c192d2ee2e4059a60b0f5c828 Mon Sep 17 00:00:00 2001 From: cilalice89 Date: Fri, 11 Jan 2019 03:44:21 +0100 Subject: [PATCH] add text " Unlike the `while` loop," to article (#26858) --- guide/english/java/loops/do-while-loop/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/loops/do-while-loop/index.md b/guide/english/java/loops/do-while-loop/index.md index cd147de3a3..647996269a 100644 --- a/guide/english/java/loops/do-while-loop/index.md +++ b/guide/english/java/loops/do-while-loop/index.md @@ -36,7 +36,7 @@ Output: iter_DoWhile Value: 21 ``` -**Remember**: The condition of a `do-while` loop is checked after the code body is executed once. +**Remember**: Unlike the `while` loop, the condition of a `do-while` loop is checked after the code body is executed once. ![:rocket:](//forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":rocket:") Run Code