From de886e7cd8ec9898b76670889814e92708279334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Mu=CC=88ller?= Date: Sun, 17 Nov 2024 21:33:41 +0100 Subject: [PATCH] fixed misspelling --- src/MqttClient.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/MqttClient.cpp b/src/MqttClient.cpp index d7ffec0..1828909 100644 --- a/src/MqttClient.cpp +++ b/src/MqttClient.cpp @@ -260,7 +260,7 @@ int MqttClient::endMessage() } /** - * @brief Publish a MQTT messages to the broker. + * @brief Publish a MQTT message to the broker. * * @param topic The topic to publish to. * @param payload The payload to publish. @@ -281,7 +281,7 @@ int MqttClient::publish(const char* topic, const char* payload, bool retain, uin } /** - * @brief Publish a MQTT messages to the broker. + * @brief Publish a MQTT message to the broker. * * @param topic The topic to publish to. * @param payload The payload to publish. @@ -296,7 +296,7 @@ int MqttClient::publish(const String& topic, const char* payload, bool retain, u } /** - * @brief Publish a MQTT messages to the broker. + * @brief Publish a MQTT message to the broker. * * @param topic The topic to publish to. * @param payload The payload to publish. @@ -311,7 +311,7 @@ int MqttClient::publish(const char* topic, String& payload, bool retain, uint8_t } /** - * @brief Publish a MQTT messages to the broker. + * @brief Publish a MQTT message to the broker. * * @param topic The topic to publish to. * @param payload The payload to publish.