Skip to content

Fix codespell typos #1877

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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 common/io/IOStackTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void IOStackTest::testAppendToQueue() {
}

/**
* Confirm we re-use blocks
* Confirm we reuse blocks
*/
void IOStackTest::testBlockReuse() {
MemoryBlockPool pool(4);
Expand Down
2 changes: 1 addition & 1 deletion common/io/PollerInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace io {
* reentrant. Calling any of the read / write / close actions may in turn add /
* remove descriptors, including the descriptor the method was itself called
* on. There are tests in SelectServerTest.cpp to exercise some of these cases
* but implementors need to be careful.
* but implementers need to be careful.
*
* @warning
* For example, if Poll() iterates over a set of Descriptors and calls
Expand Down
4 changes: 2 additions & 2 deletions include/ola/rdm/RDMControllerInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ class RDMControllerInterface {
* @param request the RDMRequest, ownership is transferred.
* @param on_complete The callback to run when the request completes.
*
* Implementors much ensure that the callback is always run at some point.
* Implementers much ensure that the callback is always run at some point.
* In other words, there must be no way that a request can be dropped in such
* a way that the callback is never run. Doing so will either block all
* subsequent requests, or leak memory depending on the implementation.
*
* Also the implementor of this class may want to re-write the transaction #,
* Also the implementer of this class may want to re-write the transaction #,
* and possibly the UID (changing src UIDs isn't addressed by the RDM
* spec).
*
Expand Down
2 changes: 1 addition & 1 deletion include/ola/web/JsonTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @addtogroup json
* @{
* @file JsonTypes.h
* @brief Enums used to identfy JSON types.
* @brief Enums used to identify JSON types.
* @}
*/

Expand Down
2 changes: 1 addition & 1 deletion python/ola/OlaClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ def GetCandidatePorts(self, callback, universe=None):
request.universe = universe

try:
# GetCandidatePorts works very much like GetDeviceInfo, so we can re-use
# GetCandidatePorts works very much like GetDeviceInfo, so we can reuse
# its complete method.
self._stub.GetCandidatePorts(
controller, request,
Expand Down