diff --git a/concepts/do-while-loops/introduction.md b/concepts/do-while-loops/introduction.md index 82035814d2..f25ded9738 100644 --- a/concepts/do-while-loops/introduction.md +++ b/concepts/do-while-loops/introduction.md @@ -7,7 +7,7 @@ int x = 23; do { - // Execute logic if x > 10 + // Always executes at least once, then repeats as long as x > 10 x = x - 2; } while (x > 10) ```