Skip to content

Commit 0907e9a

Browse files
Code Highlight markup and Link colouration fix for.adoc (#692)
Co-Authored-By: per1234 <[email protected]>
1 parent 0c82a67 commit 0907e9a

File tree

1 file changed

+2
-2
lines changed
  • Language/Structure/Control Structure

1 file changed

+2
-2
lines changed

Language/Structure/Control Structure/for.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ for (initialization; condition; increment) {
3434
[float]
3535
=== Parameters
3636
`initialization`: happens first and exactly once. +
37-
`condition`: each time through the loop, `condition` is tested; if it's `true`, the statement block, and the *increment* is executed, then the *condition* is tested again. When the *condition* becomes `false`, the loop ends. +
38-
`increment`: executed each time through the loop when `contition` is true.
37+
`condition`: each time through the loop, `condition` is tested; if it's `link:../../../variables/constants/constants[true]`, the statement block, and the *increment* is executed, then the *condition* is tested again. When the *condition* becomes `link:../../../variables/constants/constants[false]`, the loop ends. +
38+
`increment`: executed each time through the loop when `contition` is link:../../../variables/constants/constants[`true`].
3939

4040
--
4141
// OVERVIEW SECTION ENDS

0 commit comments

Comments
 (0)