Skip to content

Commit c1fa758

Browse files
authored
Update print.adoc
Fix typo: "length" was spelled "lenght"
1 parent 7fbc4e4 commit c1fa758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Functions/Communication/Serial/print.adoc

Lines changed: 1 addition & 1 deletion
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)