Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Language/Structure/Control Structure/doWhile.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down