Fix typo in info messages of json node

This commit is contained in:
Kazuhito Yokoi
2018-03-14 01:18:00 +00:00
parent 7482978953
commit f243c0df19

View File

@@ -15,7 +15,7 @@
--> -->
<script type="text/x-red" data-help-name="json"> <script type="text/x-red" data-help-name="json">
<p>Converts between a JSON string and its JavaScript object representation, in either direction.</p> <p>JSON文字列とJavaScriptオブジェクトとの間で相互変換を行います</p>
<h3>入力</h3> <h3>入力</h3>
<dl class="message-properties"> <dl class="message-properties">
<dt>payload<span class="property-type">オブジェクト | 文字列</span></dt> <dt>payload<span class="property-type">オブジェクト | 文字列</span></dt>
@@ -33,6 +33,6 @@
</dl> </dl>
<h3>詳細</h3> <h3>詳細</h3>
<p>デフォルトの変換対象は<code>msg.payload</code></p> <p>デフォルトの変換対象は<code>msg.payload</code></p>
<p>双方向の変換を自動選択するのではなく特定の変換のみ行うように設定できますこの機能は例えば<code>HTTP In</code>content-typeJSONJavaScript</p> <p>双方向の変換を自動選択するのではなく特定の変換のみ行うように設定できますこの機能は例えば<code>HTTP In</code>content-typeJSONJavaScript</p>
<p>JSON文字列への変換が指定されている場合受信した文字列に対してさらなるチェックは行いませんすなわち文字列がJSONとして正しいかどうかの検査や整形オプションを指定していたとしても整形処理を実施しません</p> <p>JSON文字列への変換が指定されている場合受信した文字列に対してさらなるチェックは行いませんすなわち文字列がJSONとして正しいかどうかの検査や整形オプションを指定していたとしても整形処理を実施しません</p>
</script> </script>