diff --git a/api.html b/api.html
index 47eedbe..e9c75fc 100644
--- a/api.html
+++ b/api.html
@@ -89,7 +89,7 @@ void setup() {
Connects the client.
Parameters
- - clientID : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.
+ - clientID : the client ID to use when connecting to the server.
Returns
@@ -103,7 +103,7 @@ void setup() {
Connects the client with a Will message specified.
Parameters
- - clientID : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.
+ - clientID : the client ID to use when connecting to the server.
- willTopic : the topic to be used by the will message (const char[])
- willQoS : the quality of service to be used by the will message (int : 0,1 or 2)
- willRetain : whether the will should be published with the retain flag (boolean)
@@ -121,7 +121,7 @@ void setup() {
Connects the client with a username and password specified.
Parameters
- - clientID : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.
+ - clientID : the client ID to use when connecting to the server.
- username : the username to use. If NULL, no username or password is used (const char[])
- password : the password to use. If NULL, no password is used (const char[])
@@ -137,7 +137,7 @@ void setup() {
Connects the client with a Will message, username and password specified.
Parameters
- - clientID : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.
+ - clientID : the client ID to use when connecting to the server.
- username : the username to use. If NULL, no username or password is used (const char[])
- password : the password to use. If NULL, no password is used (const char[])
- willTopic : the topic to be used by the will message (const char[])