Skip to content

Commit d561ae6

Browse files
authored
Merge pull request #844 from Relequestual/Fixes/735
Don't refer to JSON values as "productions".
2 parents 47b65a0 + 56c7625 commit d561ae6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

jsonschema-core.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -211,12 +211,12 @@
211211
depending on the type:
212212

213213
<list style="hanging">
214-
<t hangText="null:">A JSON "null" production</t>
215-
<t hangText="boolean:">A "true" or "false" value, from the JSON "true" or "false" productions</t>
216-
<t hangText="object:">An unordered set of properties mapping a string to an instance, from the JSON "object" production</t>
217-
<t hangText="array:">An ordered list of instances, from the JSON "array" production</t>
218-
<t hangText="number:">An arbitrary-precision, base-10 decimal number value, from the JSON "number" production</t>
219-
<t hangText="string:">A string of Unicode code points, from the JSON "string" production</t>
214+
<t hangText="null:">A JSON "null" value</t>
215+
<t hangText="boolean:">A "true" or "false" value, from the JSON "true" or "false" value</t>
216+
<t hangText="object:">An unordered set of properties mapping a string to an instance, from the JSON "object" value</t>
217+
<t hangText="array:">An ordered list of instances, from the JSON "array" value</t>
218+
<t hangText="number:">An arbitrary-precision, base-10 decimal number value, from the JSON "number" value</t>
219+
<t hangText="string:">A string of Unicode code points, from the JSON "string" value</t>
220220
</list>
221221
</t>
222222
<t>
@@ -231,8 +231,8 @@
231231
</t>
232232
<t>
233233
Since an object cannot have two properties with the same key, behavior for a
234-
JSON document that tries to define two properties (the "member" production) with
235-
the same key (the "string" production) in a single object is undefined.
234+
JSON document that tries to define two properties with
235+
the same key in a single object is undefined.
236236
</t>
237237
<t>
238238
Note that JSON Schema vocabularies are free to define their own extended

0 commit comments

Comments
 (0)