Merge pull request #5815 from roncapat/master

Change double quotes to single quotes
This commit is contained in:
Martino Facchin 2017-01-09 10:43:59 +01:00 committed by GitHub
commit af7655dfcc
1 changed files with 1 additions and 1 deletions

View File

@ -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