diff --git a/Language/Structure/Control Structure/continue.adoc b/Language/Structure/Control Structure/continue.adoc index 505a28679..9c7a368e4 100644 --- a/Language/Structure/Control Structure/continue.adoc +++ b/Language/Structure/Control Structure/continue.adoc @@ -18,7 +18,7 @@ subCategories: [ "Control Structure" ] [float] === Description [%hardbreaks] -The `continue` statement skips the rest of the current iteration of a loop (link:../for[for], link:../while[while], or link:../dowhile[do...while]). It continues by checking the conditional expression of the loop, and proceeding with any subsequent iterations. +The `continue` statement skips the rest of the current iteration of a loop (`link:../for[for]`, `link:../while[while]`, or `link:../dowhile[do...while]`). It continues by checking the conditional expression of the loop, and proceeding with any subsequent iterations. [%hardbreaks] --