From 2374de321aa6e09e251ecc0e37b25028cb85eec6 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Sun, 21 Jul 2019 23:55:13 +0530 Subject: [PATCH] Update doWhile.adoc --- Language/Structure/Control Structure/doWhile.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Language/Structure/Control Structure/doWhile.adoc b/Language/Structure/Control Structure/doWhile.adoc index 672ff5919..c79421917 100644 --- a/Language/Structure/Control Structure/doWhile.adoc +++ b/Language/Structure/Control Structure/doWhile.adoc @@ -18,7 +18,7 @@ subCategories: [ "Control Structure" ] [float] === Description [%hardbreaks] -The `do...while` loop works in the same manner as the link:../while[while] loop, with the exception that the condition is tested at the end of the loop, so the do loop will always run at least once. +The `do...while` loop works in the same manner as the `link:../while[while]` loop, with the exception that the condition is tested at the end of the loop, so the do loop will always run at least once. [float] === Syntax @@ -32,7 +32,7 @@ do { [float] === Parameters -`condition`: a boolean expression that evaluates to `true` or `false`. +`condition`: a boolean expression that evaluates to `link:../../../variables/constants/constants[true]` or `link:../../../variables/constants/constants[false]`. -- // OVERVIEW SECTION ENDS