Skip to content

Commit 4b4e6dd

Browse files
committed
fix typo
1 parent c6f4d73 commit 4b4e6dd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
ruby-version: 2.6
14-
- name: Check style, funcionality, and usage
14+
- name: Check style, functionality, and usage
1515
run: |
1616
g++ -v
1717
bundle install

.github/workflows/macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
ruby-version: 2.6
14-
- name: Check style, funcionality, and usage
14+
- name: Check style, functionality, and usage
1515
run: |
1616
g++ -v
1717
bundle install

.github/workflows/windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
ruby-version: 2.6
14-
- name: Check style, funcionality, and usage
14+
- name: Check style, functionality, and usage
1515
run: |
1616
g++ -v
1717
bundle install

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ unittest(pin_history)
332332
// we expect 6 values in that queue (5 that we set plus one
333333
// initial value), which we'll hard-code here for convenience.
334334
// (we'll actually assert those 6 values in the next block)
335-
assertEqual(6, state->digitalPin[1].queueSize));
335+
assertEqual(6, state->digitalPin[1].queueSize());
336336
bool expected[6] = {LOW, HIGH, LOW, LOW, HIGH, HIGH};
337337
bool actual[6];
338338

SampleProjects/TestSomething/test/godmode.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ unittest(analog_pin_write_history) {
146146
}
147147

148148
unittest(ascii_pin_write_history) {
149-
// digitial history as serial data, big-endian
149+
// digital history as serial data, big-endian
150150
bool binaryAscii[24] = {
151151
0, 1, 0, 1, 1, 0, 0, 1,
152152
0, 1, 1, 0, 0, 1, 0, 1,
@@ -157,7 +157,7 @@ unittest(ascii_pin_write_history) {
157157

158158
assertEqual("Yes", state->digitalPin[2].toAscii(1, true));
159159

160-
// digitial history as serial data, little-endian
160+
// digital history as serial data, little-endian
161161
bool binaryAscii2[16] = {
162162
0, 1, 1, 1, 0, 0, 1, 0,
163163
1, 1, 1, 1, 0, 1, 1, 0};

0 commit comments

Comments
 (0)