diff options
| author | Dave Madison <dmadison@users.noreply.github.com> | 2022-02-22 02:32:00 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-22 02:32:00 -0500 | 
| commit | d52b6ea456dd145025659359847e3ba8b58b5a27 (patch) | |
| tree | 7c106c4e741e47ef5dd9f4f45529fd6a6010a896 /cores/arduino/WString.h | |
| parent | f47a97522dc28c16c432422e3085035de69cfaf6 (diff) | |
| parent | 6f5881438af5b416fe83b0721a51215b9833498c (diff) | |
Merge pull request #14 from dmadison/upstream-1.8.4
Merge upstream tag '1.8.4'
Diffstat (limited to 'cores/arduino/WString.h')
| -rw-r--r-- | cores/arduino/WString.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cores/arduino/WString.h b/cores/arduino/WString.h index 77709c3..2cf4cd7 100644 --- a/cores/arduino/WString.h +++ b/cores/arduino/WString.h @@ -95,7 +95,7 @@ public:  	// returns true on success, false on failure (in which case, the string  	// is left unchanged).  if the argument is null or invalid, the -	// concatenation is considered unsucessful. +	// concatenation is considered unsuccessful.  	unsigned char concat(const String &str);  	unsigned char concat(const char *cstr);  	unsigned char concat(char c); @@ -152,7 +152,7 @@ public:  	unsigned char startsWith(const String &prefix, unsigned int offset) const;  	unsigned char endsWith(const String &suffix) const; -	// character acccess +	// character access  	char charAt(unsigned int index) const;  	void setCharAt(unsigned int index, char c);  	char operator [] (unsigned int index) const; | 
