Skip to content

Commit 81be3b7

Browse files
author
SimonePDA
authored
Merge pull request #373 from tkmikan/patch-1
fix md syntax
2 parents c92c8f7 + 23b01c8 commit 81be3b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Functions/Communication/Serial/print.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Prints data to the serial port as human-readable ASCII text. This command can ta
1919
* `Serial.print(78) gives "78"` +
2020
* `Serial.print(1.23456) gives "1.23"` +
2121
* `Serial.print('N') gives "N"` +
22-
* `Serial.print("Hello world.") gives "Hello world." `
22+
* `Serial.print("Hello world.") gives "Hello world."`
2323

2424
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-
2525

0 commit comments

Comments
 (0)