From 580acd3421030239d9fb554f6c49060da20dbe1c Mon Sep 17 00:00:00 2001 From: Alexander Terry Date: Mon, 14 May 2018 17:04:15 -0800 Subject: [PATCH] Wrap tildas properly in intro --- 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 6aec5f9b4..07f297c10 100644 --- a/Language/Functions/Communication/Serial/print.adoc +++ b/Language/Functions/Communication/Serial/print.adoc @@ -19,7 +19,7 @@ Prints data to the serial port as human-readable ASCII text. This command can ta * `Serial.print(78) gives "78"` + * `Serial.print(1.23456) gives "1.23"` + * `Serial.print('N') gives "N"` + -* `Serial.print("Hello world.") gives "Hello world." ` +* `Serial.print("Hello world.")` gives `"Hello world." ` An optional second parameter specifies the base (format) to use; permitted values are `BIN(binary, or base 2)`, `OCT(octal, or base 8)`, `DEC(decimal, or base 10)`, `HEX(hexadecimal, or base 16)`. For floating point numbers, this parameter specifies the number of decimal places to use. For example-