Skip to content

Commit a663b6b

Browse files
authored
Merge pull request #690 from animeshsrivastava24/patch-27
Code Highlight markup and Link colouration fix doWhile.adoc
2 parents 2b173ef + 2374de3 commit a663b6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Language/Structure/Control Structure/doWhile.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subCategories: [ "Control Structure" ]
1818
[float]
1919
=== Description
2020
[%hardbreaks]
21-
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.
21+
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.
2222

2323
[float]
2424
=== Syntax
@@ -32,7 +32,7 @@ do {
3232

3333
[float]
3434
=== Parameters
35-
`condition`: a boolean expression that evaluates to `true` or `false`.
35+
`condition`: a boolean expression that evaluates to `link:../../../variables/constants/constants[true]` or `link:../../../variables/constants/constants[false]`.
3636

3737
--
3838
// OVERVIEW SECTION ENDS

0 commit comments

Comments
 (0)