Skip to content

Commit 02b8ab7

Browse files
authored
Merge pull request #1788 from peternewman/0.10-lib-rt
Fix some minor typos/grammar
2 parents 30d2988 + 65dea3b commit 02b8ab7

7 files changed

Lines changed: 10 additions & 6 deletions

File tree

.codespellignorelines

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,7 @@ import java.nio.ByteOrder;
187187
int headerValue = ByteBuffer.wrap(header).order(ByteOrder.nativeOrder()).getInt();
188188
# This is a very bodgy workaround to the fact that the pip install of the archive doesn't seem to work properly now on Travis
189189
"uest\032\036.ola.rpc.STREAMING_NO_RESPONSEB\006\200\001"
190+
s1 = "one\"two\\three/four\bfive\fsix\nseven\reight\tnine";
191+
string("one\\\"two\\\\three\\/four\\bfive\\fsix\\nseven\\reight\\tnine"),
192+
s1 = "one\"two\\three/four\bfive\fsix\nseven\reight\tnine";
193+
string("one\\\"two\\\\three\\/four\\bfive\\fsix\\nseven\\reight\\tnine"),

olad/OladHTTPServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ void OladHTTPServer::HandlePortsForUniverse(
880880
* @brief Handle the list of candidate ports
881881
* @param response the HTTPResponse that is associated with the request.
882882
* @param result the result of the API call
883-
* @param devices the possbile devices & ports
883+
* @param devices the possible devices & ports
884884
*/
885885
void OladHTTPServer::HandleCandidatePorts(
886886
HTTPResponse *response,

plugins/artnet/ArtNetNode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class ArtNetNodeImpl {
252252
* @brief Send some DMX data
253253
* @param port_id port to send on
254254
* @param buffer the DMX data
255-
* @return true if it was send successfully, false otherwise
255+
* @return true if it was sent successfully, false otherwise
256256
*/
257257
bool SendDMX(uint8_t port_id, const ola::DmxBuffer &buffer);
258258

plugins/espnet/EspNetNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ bool EspNetNode::SendPoll(bool full_poll) {
220220
* Send some DMX data
221221
* @param universe the id of the universe to send
222222
* @param buffer the DMX data
223-
* @return true if it was send successfully, false otherwise
223+
* @return true if it was sent successfully, false otherwise
224224
*/
225225
bool EspNetNode::SendDMX(uint8_t universe, const ola::DmxBuffer &buffer) {
226226
if (!m_running)

plugins/pathport/PathportNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ bool PathportNode::SendArpReply() {
261261
/*
262262
* Send some DMX data
263263
* @param buffer the DMX data
264-
* @return true if it was send successfully, false otherwise
264+
* @return true if it was sent successfully, false otherwise
265265
*/
266266
bool PathportNode::SendDMX(unsigned int universe, const DmxBuffer &buffer) {
267267
if (!m_running)

plugins/sandnet/SandNetNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ bool SandNetNode::SendAdvertisement() {
291291
/*
292292
* Send some DMX data
293293
* @param buffer the DMX data
294-
* @return true if it was send successfully, false otherwise
294+
* @return true if it was sent successfully, false otherwise
295295
*/
296296
bool SandNetNode::SendDMX(uint8_t port_id, const DmxBuffer &buffer) {
297297
if (!m_running || port_id >= SANDNET_MAX_PORTS)

plugins/shownet/ShowNetNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ void ShowNetNode::SetName(const string &name) {
130130
* Send some DMX data
131131
* @param universe the id of the universe to send
132132
* @param buffer the DMX data
133-
* @return true if it was send successfully, false otherwise
133+
* @return true if it was sent successfully, false otherwise
134134
*/
135135
bool ShowNetNode::SendDMX(unsigned int universe,
136136
const ola::DmxBuffer &buffer) {

0 commit comments

Comments
 (0)