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