Skip to content

Commit b3660f4

Browse files
authored
Merge pull request #1942 from peternewman/0.10-clang-latest
Fix a few minor typos
2 parents 4a3c68d + 2e0a388 commit b3660f4

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

common/rdm/QueueingRDMController.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
*
1616
* QueueingRDMController.cpp
17-
* The Jese DMX TRI device.
17+
* An RDM Controller that sends a single message at a time.
1818
* Copyright (C) 2010 Simon Newton
1919
*/
2020

common/rdm/QueueingRDMControllerTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
*
1616
* QueueingRDMControllerTest.cpp
17-
* Test fixture for the UID classes
17+
* Test fixture for the QueueingRDMController
1818
* Copyright (C) 2005 Simon Newton
1919
*/
2020

include/ola/rdm/QueueingRDMController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515
*
1616
* QueueingRDMController.h
17-
* A RDM Controller that sends a single message at a time.
17+
* An RDM Controller that sends a single message at a time.
1818
* Copyright (C) 2010 Simon Newton
1919
*/
2020

plugins/usbpro/DmxterWidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const uint8_t DmxterWidgetImpl::TOD_LABEL = 0x82;
5050
const uint8_t DmxterWidgetImpl::DISCOVERY_BRANCH_LABEL = 0x83;
5151
const uint8_t DmxterWidgetImpl::FULL_DISCOVERY_LABEL = 0x84;
5252
const uint8_t DmxterWidgetImpl::INCREMENTAL_DISCOVERY_LABEL = 0x85;
53-
const uint8_t DmxterWidgetImpl::SHUTDOWN_LABAEL = 0xf0;
53+
const uint8_t DmxterWidgetImpl::SHUTDOWN_LABEL = 0xf0;
5454

5555

5656
/*
@@ -195,7 +195,7 @@ void DmxterWidgetImpl::HandleMessage(uint8_t label,
195195
case RDM_BCAST_REQUEST_LABEL:
196196
HandleBroadcastRDMResponse(data, length);
197197
break;
198-
case SHUTDOWN_LABAEL:
198+
case SHUTDOWN_LABEL:
199199
HandleShutdown(data, length);
200200
break;
201201
default:

plugins/usbpro/DmxterWidget.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class DmxterWidgetImpl: public BaseUsbProWidget,
7777
static const uint8_t DISCOVERY_BRANCH_LABEL;
7878
static const uint8_t FULL_DISCOVERY_LABEL;
7979
static const uint8_t INCREMENTAL_DISCOVERY_LABEL;
80-
static const uint8_t SHUTDOWN_LABAEL;
80+
static const uint8_t SHUTDOWN_LABEL;
8181

8282
typedef enum {
8383
RC_CHECKSUM_ERROR = 1,

0 commit comments

Comments
 (0)