Skip to content

Commit

Permalink
Update schema; boolean type's name is 'bool', not 'boolean'
Browse files Browse the repository at this point in the history
  • Loading branch information
desplesda committed Sep 18, 2023
1 parent 7016992 commit 9cc91ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{
"YarnName": "bool",
"DefinitionName": "bool",
"Documentation": "Converts value to boolean type.",
"Documentation": "Converts a value to bool type.",
"Signature": "bool(value)",
"Parameters": [
{
Expand All @@ -66,14 +66,14 @@
"IsParamsArray": false
}
],
"ReturnType": "boolean"
"ReturnType": "bool"
},
{
"YarnName": "visited",
"DefinitionName": "visited",
"Documentation": "Returns a boolean value of true if the node with the title of node_name has been entered and exited at least once before, otherwise returns false. Will return false if node_name doesn't match a node in project.",
"Documentation": "Returns a bool value of true if the node with the title of node_name has been entered and exited at least once before, otherwise returns false. Will return false if node_name doesn't match a node in project.",
"Signature": "visited(node_name)",
"ReturnType": "boolean",
"ReturnType": "bool",
"Parameters": [
{
"Name": "node_name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"anyOf": [
{"pattern": "string"},
{"pattern": "number"},
{"pattern": "boolean"},
{"pattern": "bool"},
{"pattern": "any"}
]
},
Expand Down

0 comments on commit 9cc91ab

Please sign in to comment.