Skip to content

Commit 66645a2

Browse files
committed
fixed comment
1 parent fd90b45 commit 66645a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cores/arduino/Print.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ size_t Print::printNumber(unsigned long n, uint8_t base)
269269
uint8_t digits = 0;
270270
char avoid_overflow = n % base;
271271

272-
// this step and 'avoid_overflow' will make sure it stays in unsigned long range beeing able to print all 10 digits no matter what
272+
// this step and 'avoid_overflow' will make sure it stays in unsigned long range being able to print all 10 digits no matter what
273273
n /= base;
274274

275275
// reverse the number and count digits

0 commit comments

Comments
 (0)