We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 438172b + a98cc46 commit d06d9b2Copy full SHA for d06d9b2
api/Common.h
@@ -85,7 +85,7 @@ int atexit(void (*func)()) __attribute__((weak));
85
int main() __attribute__((weak));
86
87
#ifdef EXTENDED_PIN_MODE
88
-// Platforms who wnat to declare more than 256 pins need to define EXTENDED_PIN_MODE globally
+// Platforms who want to declare more than 256 pins need to define EXTENDED_PIN_MODE globally
89
typedef uint32_t pin_size_t;
90
#else
91
typedef uint8_t pin_size_t;
api/HardwareSPI.h
@@ -124,7 +124,7 @@ class HardwareSPI
124
virtual void end() = 0;
125
};
126
127
-// Alias SPIClass to HardwareSPI since it's already the defacto standard for SPI classe name
+// Alias SPIClass to HardwareSPI since it's already the defacto standard for SPI class name
128
typedef HardwareSPI SPIClass;
129
130
}
api/IPAddress.h
@@ -23,7 +23,7 @@
23
#include "Printable.h"
24
#include "String.h"
25
26
-// forward declartions of global name space friend classes
+// forward declarations of global name space friend classes
27
class EthernetClass;
28
class DhcpClass;
29
class DNSClient;
api/Print.h
@@ -57,7 +57,7 @@ class Print
57
58
59
// default to zero, meaning "a single write may block"
60
- // should be overriden by subclasses with buffering
+ // should be overridden by subclasses with buffering
61
virtual int availableForWrite() { return 0; }
62
63
size_t print(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 considered unsucessful.
+ // concatenation is considered unsuccessful.
110
bool concat(const String &str);
111
bool concat(const char *cstr);
112
bool concat(const char *cstr, unsigned int length);
@@ -179,7 +179,7 @@ class String
179
bool startsWith(const String &prefix, unsigned int offset) const;
180
bool endsWith(const String &suffix) const;
181
182
- // character acccess
+ // character access
183
char charAt(unsigned int index) const;
184
void setCharAt(unsigned int index, char c);
185
char operator [] (unsigned int index) const;
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments