Commit af7655df authored by Martino Facchin's avatar Martino Facchin Committed by GitHub

Merge pull request #5815 from roncapat/master

Change double quotes to single quotes
parents a4227cf0 5cd4e8c3
...@@ -250,7 +250,7 @@ size_t Print::printFloat(double number, uint8_t digits) ...@@ -250,7 +250,7 @@ size_t Print::printFloat(double number, uint8_t digits)
// Print the decimal point, but only if there are digits beyond // Print the decimal point, but only if there are digits beyond
if (digits > 0) { if (digits > 0) {
n += print("."); n += print('.');
} }
// Extract digits from the remainder one at a time // Extract digits from the remainder one at a time
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment