|
24 | 24 | * contains methods for reading and writing CBOR data. CBOR is an Internet |
25 | 25 | * Standard and defined in RFC 8949.</p><p><b>Converting CBOR objects</b></p> |
26 | 26 | * <p>There are many ways to get a CBOR object, including from bytes, objects, |
27 | | - * streams and JSON, as described below.</p> <p><b>To and from byte arrays:</b> |
| 27 | + * streams and JSON, as described later.</p> <p><b>To and from byte arrays:</b> |
28 | 28 | * The CBORObject.DecodeFromBytes method converts a byte array in CBOR format |
29 | 29 | * to a CBOR object. The EncodeToBytes method converts a CBOR object to its |
30 | 30 | * corresponding byte array in CBOR format.</p> <p><b>To and from data |
@@ -2491,7 +2491,7 @@ public static CBORObject FromObject( |
2491 | 2491 | * getters.</li><li>Then, the method returns a CBOR map with each eligible |
2492 | 2492 | * getter's name or property name as each key, and with the corresponding value |
2493 | 2493 | * returned by that getter as that key's value. Before adding a key-value pair |
2494 | | - * to the map, the key's name is adjusted according to the rules described in |
| 2494 | + * to the map, the key's name adjusts according to the rules described in |
2495 | 2495 | * the {@link com.upokecenter.cbor.PODOptions} documentation. Note that for |
2496 | 2496 | * security reasons, certain types are not supported even if they contain |
2497 | 2497 | * eligible getters.</li></ul> <p><b>REMARK:</b> .NET enumeration ({@code |
@@ -4851,7 +4851,7 @@ public CBORObject AtJSONPointer(String pointer, CBORObject defaultValue) { |
4851 | 4851 | /** |
4852 | 4852 | * <p>Returns a copy of this object after applying the operations in a JSON |
4853 | 4853 | * patch, in the form of a CBOR object. JSON patches are specified in RFC 6902 |
4854 | | - * and their format is summarized in the remarks below.</p> <p><b>Remarks:</b> |
| 4854 | + * and their format is summarized in the remarks given later.</p> <p><b>Remarks:</b> |
4855 | 4855 | * A JSON patch is an array with one or more maps. Each map has the following |
4856 | 4856 | * keys: </p> <ul> <li>"op" - Required. This key's value is the patch operation |
4857 | 4857 | * and must be "add", "remove", "move", "copy", "test", or "replace", in basic |
|
0 commit comments