From 7ad67f1f57e7b78cabc5daf86d0bcd6243bf9c0f Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Wed, 19 Jun 2019 19:58:58 +0530 Subject: [PATCH 1/2] Typo Fixed Line 20 1. parameter requires an article before it. 2. unnecessary comma in a compound object. --- Language/Functions/Time/delayMicroseconds.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Time/delayMicroseconds.adoc b/Language/Functions/Time/delayMicroseconds.adoc index e86d37f2c..708245c44 100644 --- a/Language/Functions/Time/delayMicroseconds.adoc +++ b/Language/Functions/Time/delayMicroseconds.adoc @@ -17,7 +17,7 @@ subCategories: [ "Time" ] [float] === Description -Pauses the program for the amount of time (in microseconds) specified as parameter. There are a thousand microseconds in a millisecond, and a million microseconds in a second. +Pauses the program for the amount of time (in microseconds) specified as the parameter. There are a thousand microseconds in a millisecond and a million microseconds in a second. Currently, the largest value that will produce an accurate delay is 16383. This could change in future Arduino releases. For delays longer than a few thousand microseconds, you should use `delay()` instead. [%hardbreaks] From 8aa21e27ee1c40fe0bb8dfcc074f0c2d9e48c961 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Fri, 21 Jun 2019 14:49:09 +0530 Subject: [PATCH 2/2] Update Language/Functions/Time/delayMicroseconds.adoc Co-Authored-By: per1234 --- Language/Functions/Time/delayMicroseconds.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Time/delayMicroseconds.adoc b/Language/Functions/Time/delayMicroseconds.adoc index 708245c44..0fbf57d84 100644 --- a/Language/Functions/Time/delayMicroseconds.adoc +++ b/Language/Functions/Time/delayMicroseconds.adoc @@ -17,7 +17,7 @@ subCategories: [ "Time" ] [float] === Description -Pauses the program for the amount of time (in microseconds) specified as the parameter. There are a thousand microseconds in a millisecond and a million microseconds in a second. +Pauses the program for the amount of time (in microseconds) specified by the parameter. There are a thousand microseconds in a millisecond and a million microseconds in a second. Currently, the largest value that will produce an accurate delay is 16383. This could change in future Arduino releases. For delays longer than a few thousand microseconds, you should use `delay()` instead. [%hardbreaks]