Skip to content

Commit

Permalink
Merge pull request #1877 from DaAwesomeP/DaAwesomeP-fix-codespell-typo3
Browse files Browse the repository at this point in the history
Fix codespell typos
  • Loading branch information
peternewman committed Jul 11, 2023
2 parents 8e8cf96 + 7e8325f commit 6c39ef9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion common/io/IOStackTest.cpp
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
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
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
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
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

0 comments on commit 6c39ef9

Please sign in to comment.