From 69c9291dc42590c1f1a898a70493141b3dcba01b Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 2 Oct 2020 21:34:40 +1000 Subject: [PATCH] docs: fix simple typo, writtable -> writable There is a small typo in include/mqtt.h. Should read `writable` rather than `writtable`. --- include/mqtt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mqtt.h b/include/mqtt.h index f4c31d2..13911ee 100644 --- a/include/mqtt.h +++ b/include/mqtt.h @@ -1216,7 +1216,7 @@ struct mqtt_client { /** @brief The size of the receive buffer's memory. */ size_t mem_size; - /** @brief A pointer to the next writtable location in the receive buffer. */ + /** @brief A pointer to the next writable location in the receive buffer. */ uint8_t *curr; /** @brief The number of bytes that are still writable at curr. */