From fd5ce3367801bf9ae82b1bf5b4b6884728770a8c Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Sun, 21 Jul 2019 23:48:06 +0530 Subject: [PATCH] Update break.adoc --- Language/Structure/Control Structure/break.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Language/Structure/Control Structure/break.adoc b/Language/Structure/Control Structure/break.adoc index 63bb798ca..493845ef5 100644 --- a/Language/Structure/Control Structure/break.adoc +++ b/Language/Structure/Control Structure/break.adoc @@ -18,7 +18,7 @@ subCategories: [ "Control Structure" ] [float] === Description [%hardbreaks] -`break` is used to exit from a link:../for[for], link:../while[while] or link:../dowhile[do...while] loop, bypassing the normal loop condition. It is also used to exit from a link:../switchcase[switch case] statement. +`break` is used to exit from a `link:../for[for]`, `link:../while[while]` or `link:../dowhile[do...while]` loop, bypassing the normal loop condition. It is also used to exit from a `link:../switchcase[switch case]` statement. [%hardbreaks] -- @@ -32,7 +32,7 @@ subCategories: [ "Control Structure" ] -- [float] === Example Code -In the following code, the control exits the `for` loop when the sensor value exceeds the threshold. +In the following code, the control exits the link:../for[`for`] loop when the sensor value exceeds the threshold. [source,arduino] ---- int threshold = 40;