Renamed JsonSink::append() into write() to match Arduino's Print class

This commit is contained in:
Benoît Blanchon
2014-07-01 13:33:00 +02:00
parent 1401665129
commit c84860e3f4
7 changed files with 36 additions and 37 deletions

View File

@ -5,7 +5,7 @@
#include "StringBuilder.h"
size_t StringBuilder::append(char c)
size_t StringBuilder::write(char c)
{
if (length >= capacity) return 0;