Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
uses: arduino/actions/libraries/spell-check@master
with:
ignore-words-list: extras/codespell-ignore-words-list.txt
skip-paths: ./extras/test/external
skip-paths: ./extras/test/external,./src/cbor/lib/tinycbor
6 changes: 1 addition & 5 deletions extras/codespell-ignore-words-list.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
wan
nd
atleast
derrived
aline
anid
alocation
2 changes: 1 addition & 1 deletion src/property/PropertyContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void PropertyContainer::begin(GetTimeCallbackFunc func)

Property & PropertyContainer::addPropertyReal(Property & property, String const & name, Permission const permission, int propertyIdentifier)
{
/* Check wether or not the property already has been added to the container */
/* Check whether or not the property already has been added to the container */
Property * p = getProperty(name);
if(p != nullptr) return (*p);

Expand Down