Skip to content

Commit a6212f5

Browse files
committed
fixed misspelling
1 parent de886e7 commit a6212f5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: src/MqttClient.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ int MqttClient::endMessage()
265265
* @param topic The topic to publish to.
266266
* @param payload The payload to publish.
267267
* @param retain Publish the MQTT message with the retain flag. Default false.
268-
* @param qos The Quality of Service of the MQTT message. [0 .. 2]. Default 0.
269-
* @param dup Set or reset the duplicate flag of MQTT message. Default false (reset).
268+
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
269+
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
270270
* @return 0 - Failed to send message.
271271
* 1 - Successfully send message.
272272
*/
@@ -286,8 +286,8 @@ int MqttClient::publish(const char* topic, const char* payload, bool retain, uin
286286
* @param topic The topic to publish to.
287287
* @param payload The payload to publish.
288288
* @param retain Publish the MQTT message with the retain flag. Default false.
289-
* @param qos The Quality of Service of the MQTT message. [0 .. 2]. Default 0.
290-
* @param dup Set or reset the duplicate flag of MQTT message. Default false (reset).
289+
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
290+
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
291291
* @return 0 - Failed to send message.
292292
* 1 - Successfully send message.
293293
*/
@@ -301,8 +301,8 @@ int MqttClient::publish(const String& topic, const char* payload, bool retain, u
301301
* @param topic The topic to publish to.
302302
* @param payload The payload to publish.
303303
* @param retain Publish the MQTT message with the retain flag. Default false.
304-
* @param qos The Quality of Service of the MQTT message. [0 .. 2]. Default 0.
305-
* @param dup Set or reset the duplicate flag of MQTT message. Default false (reset).
304+
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
305+
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
306306
* @return 0 - Failed to send message.
307307
* 1 - Successfully send message.
308308
*/
@@ -316,8 +316,8 @@ int MqttClient::publish(const char* topic, String& payload, bool retain, uint8_t
316316
* @param topic The topic to publish to.
317317
* @param payload The payload to publish.
318318
* @param retain Publish the MQTT message with the retain flag. Default false.
319-
* @param qos The Quality of Service of the MQTT message. [0 .. 2]. Default 0.
320-
* @param dup Set or reset the duplicate flag of MQTT message. Default false (reset).
319+
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
320+
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
321321
* @return 0 - Failed to send message.
322322
* 1 - Successfully send message.
323323
*/

0 commit comments

Comments
 (0)