From 71ce074a87ee616593a12506ce68280c0c9745bc Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 8 Nov 2017 23:37:37 -0800 Subject: [PATCH] Fix typos in if(Serial) page Includes regression of typo reported in https://github.com/arduino/Arduino/issues/6502 and previously fixed. --- Language/Functions/Communication/Serial/ifSerial.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Language/Functions/Communication/Serial/ifSerial.adoc b/Language/Functions/Communication/Serial/ifSerial.adoc index bc386de5e..8838f4b5a 100644 --- a/Language/Functions/Communication/Serial/ifSerial.adoc +++ b/Language/Functions/Communication/Serial/ifSerial.adoc @@ -17,9 +17,9 @@ title: if(Serial) === Description Indicates if the specified Serial port is ready. -On the Leonardo, `if (Serial)` indicates whether or not the USB CDC serial connection is open. For all other instances, including `if (Serial1)` on the Leonardo, this will always returns true. +On the Leonardo, `if (Serial)` indicates whether or not the USB CDC serial connection is open. For all other instances, including `if (Serial1)` on the Leonardo, this will always return true. -This was introduced in Arduino 1.0.1. +This was introduced in Arduino IDE 1.0.1. [%hardbreaks]