Skip to content

Commit 70c4f62

Browse files
authored
Merge pull request #930 from J-J-B-J/patch-1
Update print.adoc
2 parents adbd5ec + c1fa758 commit 70c4f62

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
@@ -100,7 +100,7 @@ void loop() {
100100
for (int x = 0; x < 64; x++) { // only part of the ASCII chart, change to suit
101101
// print it out in many formats:
102102
Serial.print(x); // print as an ASCII-encoded decimal - same as "DEC"
103-
Serial.print("\t\t"); // prints two tabs to accomodate the label lenght
103+
Serial.print("\t\t"); // prints two tabs to accomodate the label length
104104
105105
Serial.print(x, DEC); // print as an ASCII-encoded decimal
106106
Serial.print("\t"); // prints a tab

0 commit comments

Comments
 (0)