We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents438172b +a98cc46 commitd06d9b2Copy full SHA for d06d9b2
api/Common.h
@@ -85,7 +85,7 @@ int atexit(void (*func)()) __attribute__((weak));
85
intmain() __attribute__((weak));
86
87
#ifdef EXTENDED_PIN_MODE
88
-// Platforms whownat to declare more than 256 pins need to define EXTENDED_PIN_MODE globally
+// Platforms whowant to declare more than 256 pins need to define EXTENDED_PIN_MODE globally
89
typedefuint32_tpin_size_t;
90
#else
91
typedefuint8_tpin_size_t;
api/HardwareSPI.h
@@ -124,7 +124,7 @@ class HardwareSPI
124
virtualvoidend() = 0;
125
};
126
127
-// Alias SPIClass to HardwareSPI since it's already the defacto standard for SPIclasse name
+// Alias SPIClass to HardwareSPI since it's already the defacto standard for SPIclass name
128
typedef HardwareSPI SPIClass;
129
130
}
api/IPAddress.h
@@ -23,7 +23,7 @@
23
#include"Printable.h"
24
#include"String.h"
25
26
-// forwarddeclartions of global name space friend classes
+// forwarddeclarations of global name space friend classes
27
classEthernetClass;
28
classDhcpClass;
29
classDNSClient;
api/Print.h
@@ -57,7 +57,7 @@ class Print
57
58
59
// default to zero, meaning "a single write may block"
60
-// should beoverriden by subclasses with buffering
+// should beoverridden by subclasses with buffering
61
virtualintavailableForWrite() {return0; }
62
63
size_tprint(const __FlashStringHelper *);
api/Stream.h
@@ -24,7 +24,7 @@
#include<inttypes.h>
#include"Print.h"
-//compatability macros for testing
+//compatibility macros for testing
/*
#define getInt() parseInt()
30
#define getInt(ignore) parseInt(ignore)
api/String.h
@@ -106,7 +106,7 @@ class String
106
107
// returns true on success, false on failure (in which case, the string
108
// is left unchanged). if the argument is null or invalid, the
109
-// concatenation is consideredunsucessful.
+// concatenation is consideredunsuccessful.
110
boolconcat(const String &str);
111
boolconcat(constchar *cstr);
112
boolconcat(constchar *cstr,unsignedint length);
@@ -179,7 +179,7 @@ class String
179
boolstartsWith(const String &prefix,unsignedint offset)const;
180
boolendsWith(const String &suffix)const;
181
182
-// characteracccess
+// characteraccess
183
charcharAt(unsignedint index)const;
184
voidsetCharAt(unsignedint index,char c);
185
charoperator [] (unsignedint index)const;