Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix minor misspellings in comments#149

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
aentinger merged 1 commit intoarduino:masterfromearlephilhower:spell
May 31, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletionapi/Common.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@ int atexit(void (*func)()) __attribute__((weak));
int main() __attribute__((weak));

#ifdef EXTENDED_PIN_MODE
// 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
typedef uint32_t pin_size_t;
#else
typedef uint8_t pin_size_t;
Expand Down
2 changes: 1 addition & 1 deletionapi/HardwareSPI.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -124,7 +124,7 @@ class HardwareSPI
virtual void end() = 0;
};

// 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
typedef HardwareSPI SPIClass;

}
2 changes: 1 addition & 1 deletionapi/IPAddress.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -23,7 +23,7 @@
#include "Printable.h"
#include "String.h"

// forwarddeclartions of global name space friend classes
// forwarddeclarations of global name space friend classes
class EthernetClass;
class DhcpClass;
class DNSClient;
Expand Down
2 changes: 1 addition & 1 deletionapi/Print.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -57,7 +57,7 @@ class Print
}

// default to zero, meaning "a single write may block"
// should beoverriden by subclasses with buffering
// should beoverridden by subclasses with buffering
virtual int availableForWrite() { return 0; }

size_t print(const __FlashStringHelper *);
Expand Down
2 changes: 1 addition & 1 deletionapi/Stream.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -24,7 +24,7 @@
#include <inttypes.h>
#include "Print.h"

//compatability macros for testing
//compatibility macros for testing
/*
#define getInt() parseInt()
#define getInt(ignore) parseInt(ignore)
Expand Down
4 changes: 2 additions & 2 deletionsapi/String.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -106,7 +106,7 @@ class String

// 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 consideredunsucessful.
// concatenation is consideredunsuccessful.
bool concat(const String &str);
bool concat(const char *cstr);
bool concat(const char *cstr, unsigned int length);
Expand DownExpand Up@@ -179,7 +179,7 @@ class String
bool startsWith(const String &prefix, unsigned int offset) const;
bool endsWith(const String &suffix) const;

// characteracccess
// characteraccess
char charAt(unsigned int index) const;
void setCharAt(unsigned int index, char c);
char operator [] (unsigned int index) const;
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp