We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd90b45 commit 66645a2Copy full SHA for 66645a2
cores/arduino/Print.cpp
@@ -269,7 +269,7 @@ size_t Print::printNumber(unsigned long n, uint8_t base)
269
uint8_t digits = 0;
270
char avoid_overflow = n % base;
271
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
+ // this step and 'avoid_overflow' will make sure it stays in unsigned long range being able to print all 10 digits no matter what
273
n /= base;
274
275
// reverse the number and count digits
0 commit comments