From 85affc445ccfefedcf2670899d50b8a7de871161 Mon Sep 17 00:00:00 2001 From: Animesh Srivastava Date: Fri, 5 Jul 2019 00:18:17 +0530 Subject: [PATCH] Update print.adoc Fixed code syntax related typo --- Language/Functions/Communication/Serial/print.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Communication/Serial/print.adoc b/Language/Functions/Communication/Serial/print.adoc index 06844efc5..4f3e6b1fc 100644 --- a/Language/Functions/Communication/Serial/print.adoc +++ b/Language/Functions/Communication/Serial/print.adoc @@ -32,7 +32,7 @@ An optional second parameter specifies the base (format) to use; permitted value * `Serial.print(1.23456, 2)` gives "1.23" + * `Serial.print(1.23456, 4)` gives "1.2346" -You can pass flash-memory based strings to Serial.print() by wrapping them with link:../../../../variables/utilities/progmem[F()]. For example: +You can pass flash-memory based strings to `Serial.print()` by wrapping them with link:../../../../variables/utilities/progmem[F()]. For example: `Serial.print(F(“Hello World”))`