Remove words on client id length restriction

This commit is contained in:
Nick O'Leary 2015-09-04 13:38:00 +01:00
parent 3ce7d92ba2
commit e1221c192d

View File

@ -89,7 +89,7 @@ void setup() {
<p>Connects the client.</p> <p>Connects the client.</p>
<h5>Parameters</h5> <h5>Parameters</h5>
<ul> <ul>
<li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.</li> <li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server.</li>
</ul> </ul>
<h5>Returns</h5> <h5>Returns</h5>
<ul> <ul>
@ -103,7 +103,7 @@ void setup() {
<p>Connects the client with a Will message specified.</p> <p>Connects the client with a Will message specified.</p>
<h5>Parameters</h5> <h5>Parameters</h5>
<ul> <ul>
<li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.</li> <li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server.</li>
<li><span class="methodparams">willTopic</span> : the topic to be used by the will message (const char[])</li> <li><span class="methodparams">willTopic</span> : the topic to be used by the will message (const char[])</li>
<li><span class="methodparams">willQoS</span> : the quality of service to be used by the will message (int : 0,1 or 2)</li> <li><span class="methodparams">willQoS</span> : the quality of service to be used by the will message (int : 0,1 or 2)</li>
<li><span class="methodparams">willRetain</span> : whether the will should be published with the retain flag (boolean)</li> <li><span class="methodparams">willRetain</span> : whether the will should be published with the retain flag (boolean)</li>
@ -121,7 +121,7 @@ void setup() {
<p>Connects the client with a username and password specified.</p> <p>Connects the client with a username and password specified.</p>
<h5>Parameters</h5> <h5>Parameters</h5>
<ul> <ul>
<li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.</li> <li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server.</li>
<li><span class="methodparams">username</span> : the username to use. If NULL, no username or password is used (const char[])</li> <li><span class="methodparams">username</span> : the username to use. If NULL, no username or password is used (const char[])</li>
<li><span class="methodparams">password</span> : the password to use. If NULL, no password is used (const char[])</li> <li><span class="methodparams">password</span> : the password to use. If NULL, no password is used (const char[])</li>
</ul> </ul>
@ -137,7 +137,7 @@ void setup() {
<p>Connects the client with a Will message, username and password specified.</p> <p>Connects the client with a Will message, username and password specified.</p>
<h5>Parameters</h5> <h5>Parameters</h5>
<ul> <ul>
<li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server. As per MQTT, this must be between 1 and 23 characters long.</li> <li><span class="methodparams">clientID</span> : the client ID to use when connecting to the server.</li>
<li><span class="methodparams">username</span> : the username to use. If NULL, no username or password is used (const char[])</li> <li><span class="methodparams">username</span> : the username to use. If NULL, no username or password is used (const char[])</li>
<li><span class="methodparams">password</span> : the password to use. If NULL, no password is used (const char[])</li> <li><span class="methodparams">password</span> : the password to use. If NULL, no password is used (const char[])</li>
<li><span class="methodparams">willTopic</span> : the topic to be used by the will message (const char[])</li> <li><span class="methodparams">willTopic</span> : the topic to be used by the will message (const char[])</li>