From 33b18990fa517f479923a00f69c1586f60a27269 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Sun, 21 Jul 2019 23:33:49 +0530 Subject: [PATCH] Update loop.adoc --- Language/Structure/Sketch/loop.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Structure/Sketch/loop.adoc b/Language/Structure/Sketch/loop.adoc index 8586e44c0..a9261c1d2 100644 --- a/Language/Structure/Sketch/loop.adoc +++ b/Language/Structure/Sketch/loop.adoc @@ -17,7 +17,7 @@ subCategories: [ "Sketch" ] [float] === Description -After creating a link:../setup[setup()] function, which initializes and sets the initial values, the `loop()` function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond. Use it to actively control the Arduino board. +After creating a `link:../setup[setup()]` function, which initializes and sets the initial values, the `loop()` function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond. Use it to actively control the Arduino board. [%hardbreaks] --