Skip to content

Commit 32b9e2d

Browse files
authored
chore(README): Update documentation for constant values (#536)
Constant values of type boolean and sequence types are not stored as strings. Closes: #535
1 parent 12a845d commit 32b9e2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,9 +728,9 @@ values, all of which have the following fields:
728728

729729
* `type`: One of `"string"`, `"number"`, `"boolean"`, `"null"`, `"Infinity"`, `"NaN"`, `"sequence"` or `"dictionary"`.
730730

731-
For `"string"`, `"number"`, `"boolean"`, and `"sequence"`:
731+
For `"boolean"`, `"string"`, `"number"`, and `"sequence"`:
732732

733-
* `value`: The value of the given type, as a string. For sequence, the only possible value is `[]`.
733+
* `value`: The value of the given type. For string and number types, the value is given as a string. For booleans, the possible values are `true` and `false`. For sequence, the only possible value is `[]`.
734734

735735
For `"Infinity"`:
736736

0 commit comments

Comments
 (0)