mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-28 09:24:14 +01:00
Merge pull request #5815 from roncapat/master
Change double quotes to single quotes
This commit is contained in:
commit
b77957eb59
@ -250,7 +250,7 @@ size_t Print::printFloat(double number, uint8_t digits)
|
||||
|
||||
// Print the decimal point, but only if there are digits beyond
|
||||
if (digits > 0) {
|
||||
n += print(".");
|
||||
n += print('.');
|
||||
}
|
||||
|
||||
// Extract digits from the remainder one at a time
|
||||
|
@ -242,7 +242,7 @@ size_t Print::printFloat(double number, uint8_t digits)
|
||||
|
||||
// Print the decimal point, but only if there are digits beyond
|
||||
if (digits > 0) {
|
||||
n += print(".");
|
||||
n += print('.');
|
||||
}
|
||||
|
||||
// Extract digits from the remainder one at a time
|
||||
|
Loading…
Reference in New Issue
Block a user