fixed unmatched HTML tags (#1437)

This commit is contained in:
Hiroyasu Nishiyama
2017-10-11 21:31:37 +09:00
committed by Nick O'Leary
parent 58a890e836
commit 23c2a771d3
3 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@
<dt>payload<span class="property-type">object | string | array | buffer</span></dt>
<dd>The behaviour of the node is determined by the type of <code>msg.payload</code>:
<ul>
<li><b>string</b>/<b>buffer</b> - the message is split using the specified character (default: <code>\n</code>), buffer sequence or into fixed lengths.
<li><b>string</b>/<b>buffer</b> - the message is split using the specified character (default: <code>\n</code>), buffer sequence or into fixed lengths.</li>
<li><b>array</b> - the message is split into either individual array elements, or arrays of a fixed-length.</li>
<li><b>object</b> - a message is sent for each key/value pair of the object.</li>
</ul>