From 2b4d14a9fc08afe7784d5e3cfe58c406ff5e9ab0 Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 15 Dec 2017 21:18:21 -0800 Subject: [PATCH] Add missing right bracket to Serial.println() page See: https://github.com/arduino/reference-en/pull/281 --- Language/Functions/Communication/Serial/println.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Communication/Serial/println.adoc b/Language/Functions/Communication/Serial/println.adoc index 1beb55f..4185a2f 100644 --- a/Language/Functions/Communication/Serial/println.adoc +++ b/Language/Functions/Communication/Serial/println.adoc @@ -14,7 +14,7 @@ title: Serial.println() [float] === Description -Prints data to the serial port as human-readable ASCII text followed by a carriage return character (ASCII 13, or '\r') and a newline character (ASCII 10, or '\n'). This command takes the same forms as link:../print[Serial.print(). +Prints data to the serial port as human-readable ASCII text followed by a carriage return character (ASCII 13, or '\r') and a newline character (ASCII 10, or '\n'). This command takes the same forms as link:../print[Serial.print()]. [%hardbreaks]