Skip to content

Commit 6c39ef9

Browse files
authored
Merge pull request #1877 from DaAwesomeP/DaAwesomeP-fix-codespell-typo3
Fix codespell typos
2 parents 8e8cf96 + 7e8325f commit 6c39ef9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

common/io/IOStackTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ void IOStackTest::testAppendToQueue() {
207207
}
208208

209209
/**
210-
* Confirm we re-use blocks
210+
* Confirm we reuse blocks
211211
*/
212212
void IOStackTest::testBlockReuse() {
213213
MemoryBlockPool pool(4);

common/io/PollerInterface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace io {
5151
* reentrant. Calling any of the read / write / close actions may in turn add /
5252
* remove descriptors, including the descriptor the method was itself called
5353
* on. There are tests in SelectServerTest.cpp to exercise some of these cases
54-
* but implementors need to be careful.
54+
* but implementers need to be careful.
5555
*
5656
* @warning
5757
* For example, if Poll() iterates over a set of Descriptors and calls

include/ola/rdm/RDMControllerInterface.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ class RDMControllerInterface {
7979
* @param request the RDMRequest, ownership is transferred.
8080
* @param on_complete The callback to run when the request completes.
8181
*
82-
* Implementors much ensure that the callback is always run at some point.
82+
* Implementers much ensure that the callback is always run at some point.
8383
* In other words, there must be no way that a request can be dropped in such
8484
* a way that the callback is never run. Doing so will either block all
8585
* subsequent requests, or leak memory depending on the implementation.
8686
*
87-
* Also the implementor of this class may want to re-write the transaction #,
87+
* Also the implementer of this class may want to re-write the transaction #,
8888
* and possibly the UID (changing src UIDs isn't addressed by the RDM
8989
* spec).
9090
*

include/ola/web/JsonTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @addtogroup json
2424
* @{
2525
* @file JsonTypes.h
26-
* @brief Enums used to identfy JSON types.
26+
* @brief Enums used to identify JSON types.
2727
* @}
2828
*/
2929

python/ola/OlaClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ def GetCandidatePorts(self, callback, universe=None):
13451345
request.universe = universe
13461346

13471347
try:
1348-
# GetCandidatePorts works very much like GetDeviceInfo, so we can re-use
1348+
# GetCandidatePorts works very much like GetDeviceInfo, so we can reuse
13491349
# its complete method.
13501350
self._stub.GetCandidatePorts(
13511351
controller, request,

0 commit comments

Comments
 (0)