rippled - fix typos

This commit is contained in:
mDuo13
2016-02-08 17:08:54 -08:00
parent ae7de9ab7a
commit 0aa73ba456
2 changed files with 4 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ If you plan on making multiple requests, use [Keep-Alives](http://tools.ietf.org
Send request body as a [JSON](http://www.w3schools.com/json/) object with the following attributes: Send request body as a [JSON](http://www.w3schools.com/json/) object with the following attributes:
* Put the command in the top-level `"method"` field * Put the command in the top-level `"method"` field
* Include a top-level `"params"` field. The contents of this field should be **a one-item array** where the one items is a nested JSON object with all the parameters for the command. * Include a top-level `"params"` field. The contents of this field should be **a one-item array** containing only a nested JSON object with all the parameters for the command.
The response is also a JSON object. The response is also a JSON object.
@@ -998,7 +998,7 @@ Each trust-line object has some combination of the following fields:
| no\_ripple | Boolean | (May be omitted) `true` if this account has enabled the [NoRipple flag](https://ripple.com/knowledge_center/understanding-the-noripple-flag/) for this line. If omitted, that is the same as `false`. | | no\_ripple | Boolean | (May be omitted) `true` if this account has enabled the [NoRipple flag](https://ripple.com/knowledge_center/understanding-the-noripple-flag/) for this line. If omitted, that is the same as `false`. |
| no\_ripple\_peer | Boolean | (May be omitted) `true` if the peer account has enabled the [NoRipple flag](https://ripple.com/knowledge_center/understanding-the-noripple-flag/). If omitted, that is the same as `false`. | | no\_ripple\_peer | Boolean | (May be omitted) `true` if the peer account has enabled the [NoRipple flag](https://ripple.com/knowledge_center/understanding-the-noripple-flag/). If omitted, that is the same as `false`. |
| freeze | Boolean | (May be omitted) `true` if this account has [frozen](freeze.html) this trust line. If omitted, that is the same as `false`. | | freeze | Boolean | (May be omitted) `true` if this account has [frozen](freeze.html) this trust line. If omitted, that is the same as `false`. |
| freeze\_peer | (May be omitted) `true` if the peer account has [frozen](freeze.html) this trust line. If omitted, that is the same as `false`. | | freeze\_peer | Boolean | (May be omitted) `true` if the peer account has [frozen](freeze.html) this trust line. If omitted, that is the same as `false`. |
#### Possible Errors #### #### Possible Errors ####

View File

@@ -199,7 +199,7 @@
<p>Send request body as a <a href="http://www.w3schools.com/json/">JSON</a> object with the following attributes:</p> <p>Send request body as a <a href="http://www.w3schools.com/json/">JSON</a> object with the following attributes:</p>
<ul> <ul>
<li>Put the command in the top-level <code>"method"</code> field</li> <li>Put the command in the top-level <code>"method"</code> field</li>
<li>Include a top-level <code>"params"</code> field. The contents of this field should be <strong>a one-item array</strong> where the one items is a nested JSON object with all the parameters for the command.</li> <li>Include a top-level <code>"params"</code> field. The contents of this field should be <strong>a one-item array</strong> containing only a nested JSON object with all the parameters for the command.</li>
</ul> </ul>
<p>The response is also a JSON object.</p> <p>The response is also a JSON object.</p>
<h4 id="public-servers-1">Public Servers</h4> <h4 id="public-servers-1">Public Servers</h4>
@@ -1367,8 +1367,8 @@ rippled account_info r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59 true
</tr> </tr>
<tr> <tr>
<td>freeze_peer</td> <td>freeze_peer</td>
<td>Boolean</td>
<td>(May be omitted) <code>true</code> if the peer account has <a href="freeze.html">frozen</a> this trust line. If omitted, that is the same as <code>false</code>.</td> <td>(May be omitted) <code>true</code> if the peer account has <a href="freeze.html">frozen</a> this trust line. If omitted, that is the same as <code>false</code>.</td>
<td></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>