Skip to content

Commit e785c6d

Browse files
committed
Fix typos, missing comma, and overlong lines
The long lines basically worked but caused warnings.
1 parent 6c76d33 commit e785c6d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

jsonschema-hyperschema.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ Link: <https://schema.example.com/entry> rel=describedBy
17311731
},
17321732
"email": false
17331733
}
1734-
}
1734+
},
17351735
"submissionMediaType":
17361736
"multipart/alternative; boundary=ab2",
17371737
"submissionSchema": {
@@ -1925,8 +1925,8 @@ Link: <https://api.example.com/trees/1/nodes/456> rev=up
19251925
</t>
19261926
<t>
19271927
Note that there is an object member called "items", which is an array
1928-
and thefore uses the validation keyword "items" in its own schema. The outer
1929-
"items" is a property name, the inner one is a schema keyword.
1928+
and therefore uses the validation keyword "items" in its own schema.
1929+
The outer "items" is a property name, the inner one is a schema keyword.
19301930
</t>
19311931
<figure>
19321932
<artwork>
@@ -2047,7 +2047,7 @@ Link: <https://api.example.com/trees/1/nodes/456> rev=up
20472047
Here are all of the links that apply to this instance,
20482048
including those that are referenced by using the "thing"
20492049
schema for the individual items. The "self" links for
2050-
the overal resource and each individual item are
2050+
the overall resource and each individual item are
20512051
distinguished by different context pointers. Note also
20522052
that the "item" and "self" links for a given thing have
20532053
identical target URIs but different context pointers.
@@ -2058,14 +2058,16 @@ Link: <https://api.example.com/trees/1/nodes/456> rev=up
20582058
"contextUri": "https://api.example.com/things",
20592059
"contextPointer": "",
20602060
"rel": "self",
2061-
"targetUri": "https://api.example.com/things?offset=20,limit=2",
2061+
"targetUri":
2062+
"https://api.example.com/things?offset=20,limit=2",
20622063
"attachmentPointer": ""
20632064
},
20642065
{
20652066
"contextUri": "https://api.example.com/things",
20662067
"contextPointer": "",
20672068
"rel": "next",
2068-
"targetUri": "https://api.example.com/things?offset=22,limit=2",
2069+
"targetUri":
2070+
"https://api.example.com/things?offset=22,limit=2",
20692071
"attachmentPointer": ""
20702072
},
20712073
{

0 commit comments

Comments
 (0)