Skip to content

Commit

Permalink
Merge pull request #1942 from peternewman/0.10-clang-latest
Browse files Browse the repository at this point in the history
Fix a few minor typos
  • Loading branch information
peternewman committed Mar 13, 2024
2 parents 4a3c68d + 2e0a388 commit b3660f4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion common/rdm/QueueingRDMController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* QueueingRDMController.cpp
* The Jese DMX TRI device.
* An RDM Controller that sends a single message at a time.
* Copyright (C) 2010 Simon Newton
*/

Expand Down
2 changes: 1 addition & 1 deletion common/rdm/QueueingRDMControllerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* QueueingRDMControllerTest.cpp
* Test fixture for the UID classes
* Test fixture for the QueueingRDMController
* Copyright (C) 2005 Simon Newton
*/

Expand Down
2 changes: 1 addition & 1 deletion include/ola/rdm/QueueingRDMController.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* QueueingRDMController.h
* A RDM Controller that sends a single message at a time.
* An RDM Controller that sends a single message at a time.
* Copyright (C) 2010 Simon Newton
*/

Expand Down
4 changes: 2 additions & 2 deletions plugins/usbpro/DmxterWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const uint8_t DmxterWidgetImpl::TOD_LABEL = 0x82;
const uint8_t DmxterWidgetImpl::DISCOVERY_BRANCH_LABEL = 0x83;
const uint8_t DmxterWidgetImpl::FULL_DISCOVERY_LABEL = 0x84;
const uint8_t DmxterWidgetImpl::INCREMENTAL_DISCOVERY_LABEL = 0x85;
const uint8_t DmxterWidgetImpl::SHUTDOWN_LABAEL = 0xf0;
const uint8_t DmxterWidgetImpl::SHUTDOWN_LABEL = 0xf0;


/*
Expand Down Expand Up @@ -195,7 +195,7 @@ void DmxterWidgetImpl::HandleMessage(uint8_t label,
case RDM_BCAST_REQUEST_LABEL:
HandleBroadcastRDMResponse(data, length);
break;
case SHUTDOWN_LABAEL:
case SHUTDOWN_LABEL:
HandleShutdown(data, length);
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion plugins/usbpro/DmxterWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class DmxterWidgetImpl: public BaseUsbProWidget,
static const uint8_t DISCOVERY_BRANCH_LABEL;
static const uint8_t FULL_DISCOVERY_LABEL;
static const uint8_t INCREMENTAL_DISCOVERY_LABEL;
static const uint8_t SHUTDOWN_LABAEL;
static const uint8_t SHUTDOWN_LABEL;

typedef enum {
RC_CHECKSUM_ERROR = 1,
Expand Down

0 comments on commit b3660f4

Please sign in to comment.