Skip to content

Commit

Permalink
Clarify assertion operator documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Feb 27, 2018
1 parent bf37666 commit 6081b23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/style-spec/reference/v8.json
Expand Up @@ -2075,19 +2075,19 @@
"group": "Types"
},
"string": {
"doc": "Asserts that the input value is a string. If multiple values are provided, each one is evaluated in order until a string value is obtained. If none of the inputs are strings, the expression is an error.",
"doc": "Asserts that the input value is a string. If multiple values are provided, each one is evaluated in order until a string is obtained. If none of the inputs are strings, the expression is an error.",
"group": "Types"
},
"number": {
"doc": "Asserts that the input value is a number. If multiple values are provided, each one is evaluated in order until a number value is obtained. If none of the inputs are numbers, the expression is an error.",
"doc": "Asserts that the input value is a number. If multiple values are provided, each one is evaluated in order until a number is obtained. If none of the inputs are numbers, the expression is an error.",
"group": "Types"
},
"boolean": {
"doc": "Asserts that the input value is a boolean. If multiple values are provided, each one is evaluated in order until a boolean value is obtained. If none of the inputs are booleans, the expression is an error.",
"doc": "Asserts that the input value is a boolean. If multiple values are provided, each one is evaluated in order until a boolean is obtained. If none of the inputs are booleans, the expression is an error.",
"group": "Types"
},
"object": {
"doc": "Asserts that the input value is an object. If it is not, the expression is an error.",
"doc": "Asserts that the input value is an object. If multiple values are provided, each one is evaluated in order until an object is obtained. If none of the inputs are objects, the expression is an error.",
"group": "Types"
},
"to-string": {
Expand Down

0 comments on commit 6081b23

Please sign in to comment.