File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ int atexit(void (*func)()) __attribute__((weak));
85
85
int main () __attribute__((weak));
86
86
87
87
#ifdef EXTENDED_PIN_MODE
88
- // Platforms who wnat to declare more than 256 pins need to define EXTENDED_PIN_MODE globally
88
+ // Platforms who want to declare more than 256 pins need to define EXTENDED_PIN_MODE globally
89
89
typedef uint32_t pin_size_t ;
90
90
#else
91
91
typedef uint8_t pin_size_t ;
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ class HardwareSPI
124
124
virtual void end () = 0;
125
125
};
126
126
127
- // Alias SPIClass to HardwareSPI since it's already the defacto standard for SPI classe name
127
+ // Alias SPIClass to HardwareSPI since it's already the defacto standard for SPI class name
128
128
typedef HardwareSPI SPIClass;
129
129
130
130
}
Original file line number Diff line number Diff line change 23
23
#include " Printable.h"
24
24
#include " String.h"
25
25
26
- // forward declartions of global name space friend classes
26
+ // forward declarations of global name space friend classes
27
27
class EthernetClass ;
28
28
class DhcpClass ;
29
29
class DNSClient ;
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class Print
57
57
}
58
58
59
59
// default to zero, meaning "a single write may block"
60
- // should be overriden by subclasses with buffering
60
+ // should be overridden by subclasses with buffering
61
61
virtual int availableForWrite () { return 0 ; }
62
62
63
63
size_t print (const __FlashStringHelper *);
Original file line number Diff line number Diff line change 24
24
#include < inttypes.h>
25
25
#include " Print.h"
26
26
27
- // compatability macros for testing
27
+ // compatibility macros for testing
28
28
/*
29
29
#define getInt() parseInt()
30
30
#define getInt(ignore) parseInt(ignore)
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ class String
106
106
107
107
// returns true on success, false on failure (in which case, the string
108
108
// is left unchanged). if the argument is null or invalid, the
109
- // concatenation is considered unsucessful .
109
+ // concatenation is considered unsuccessful .
110
110
bool concat (const String &str);
111
111
bool concat (const char *cstr);
112
112
bool concat (const char *cstr, unsigned int length);
@@ -179,7 +179,7 @@ class String
179
179
bool startsWith (const String &prefix, unsigned int offset) const ;
180
180
bool endsWith (const String &suffix) const ;
181
181
182
- // character acccess
182
+ // character access
183
183
char charAt (unsigned int index) const ;
184
184
void setCharAt (unsigned int index, char c);
185
185
char operator [] (unsigned int index) const ;
You can’t perform that action at this time.
0 commit comments