Skip to content

Commit 9474d0d

Browse files
committed
Edit workflow; edit documentation; minor code edits
1 parent 9c026b5 commit 9474d0d

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# ******** NOTE ********
88
# We have attempted to detect the languages in your repository. Please check
9-
# the `language` matrix defined below to confirm you have the correct set of
9+
# the `language` matrix defined next to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
1212
name: "CodeQL"

api/com.upokecenter.cbor.CBORObject.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
contains methods for reading and writing CBOR data. CBOR is an Internet
77
Standard and defined in RFC 8949.</p><p><b>Converting CBOR objects</b></p>
88
<p>There are many ways to get a CBOR object, including from bytes, objects,
9-
streams and JSON, as described below.</p> <p><b>To and from byte arrays:</b>
9+
streams and JSON, as described later.</p> <p><b>To and from byte arrays:</b>
1010
The CBORObject.DecodeFromBytes method converts a byte array in CBOR format
1111
to a CBOR object. The EncodeToBytes method converts a CBOR object to its
1212
corresponding byte array in CBOR format.</p> <p><b>To and from data
@@ -2923,7 +2923,7 @@ Generates a CBORObject from an arbitrary object. See the overload of this
29232923
getters.</li><li>Then, the method returns a CBOR map with each eligible
29242924
getter's name or property name as each key, and with the corresponding value
29252925
returned by that getter as that key's value. Before adding a key-value pair
2926-
to the map, the key's name is adjusted according to the rules described in
2926+
to the map, the key's name adjusts according to the rules described in
29272927
the <code>PODOptions</code> documentation. Note that for
29282928
security reasons, certain types are not supported even if they contain
29292929
eligible getters.</li></ul> <p><b>REMARK:</b> .NET enumeration (<code>
@@ -4600,7 +4600,7 @@ Gets the CBOR object referred to by a JSON Pointer according to RFC6901. For
46004600

46014601
<p>Returns a copy of this object after applying the operations in a JSON
46024602
patch, in the form of a CBOR object. JSON patches are specified in RFC 6902
4603-
and their format is summarized in the remarks below.</p> <p><b>Remarks:</b>
4603+
and their format is summarized in the remarks given later.</p> <p><b>Remarks:</b>
46044604
A JSON patch is an array with one or more maps. Each map has the following
46054605
keys: </p> <ul> <li>"op" - Required. This key's value is the patch operation
46064606
and must be "add", "remove", "move", "copy", "test", or "replace", in basic

src/main/java/com/upokecenter/cbor/CBORObject.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* contains methods for reading and writing CBOR data. CBOR is an Internet
2525
* Standard and defined in RFC 8949.</p><p><b>Converting CBOR objects</b></p>
2626
* <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>
2828
* The CBORObject.DecodeFromBytes method converts a byte array in CBOR format
2929
* to a CBOR object. The EncodeToBytes method converts a CBOR object to its
3030
* corresponding byte array in CBOR format.</p> <p><b>To and from data
@@ -2491,7 +2491,7 @@ public static CBORObject FromObject(
24912491
* getters.</li><li>Then, the method returns a CBOR map with each eligible
24922492
* getter's name or property name as each key, and with the corresponding value
24932493
* 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
24952495
* the {@link com.upokecenter.cbor.PODOptions} documentation. Note that for
24962496
* security reasons, certain types are not supported even if they contain
24972497
* eligible getters.</li></ul> <p><b>REMARK:</b> .NET enumeration ({@code
@@ -4851,7 +4851,7 @@ public CBORObject AtJSONPointer(String pointer, CBORObject defaultValue) {
48514851
/**
48524852
* <p>Returns a copy of this object after applying the operations in a JSON
48534853
* 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>
48554855
* A JSON patch is an array with one or more maps. Each map has the following
48564856
* keys: </p> <ul> <li>"op" - Required. This key's value is the patch operation
48574857
* and must be "add", "remove", "move", "copy", "test", or "replace", in basic

0 commit comments

Comments
 (0)