Skip to content

Commit

Permalink
Align return value description terminology
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 4, 2021
1 parent 69d8552 commit bfc55d7
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion count.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}
],
"returns": {
"description": "Return `true` if the element should increase the counter, otherwise return `false`.",
"description": "`true` if the element should increase the counter, otherwise `false`.",
"schema": {
"type": "boolean"
}
Expand Down
2 changes: 1 addition & 1 deletion debug.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
}
],
"returns": {
"description": "Returns the data as passed to the `data` parameter.",
"description": "The data as passed to the `data` parameter without any modification.",
"schema": {
"description": "Any data type is allowed."
}
Expand Down
2 changes: 1 addition & 1 deletion dimension_labels.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dimension_labels",
"summary": "Get the dimension labels",
"description": "Returns all labels for a dimension in the data cube. The labels have the same order as in the data cube.",
"description": "Gives all labels for a dimension in the data cube. The labels have the same order as in the data cube.",
"categories": [
"cubes"
],
Expand Down
2 changes: 1 addition & 1 deletion eq.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}
],
"returns": {
"description": "Returns `true` if `x` is equal to `y`, `null` if any operand is `null`, otherwise `false`.",
"description": "`true` if `x` is equal to `y`, `null` if any operand is `null`, otherwise `false`.",
"schema": {
"type": [
"boolean",
Expand Down
2 changes: 1 addition & 1 deletion filter_labels.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}
],
"returns": {
"description": "Return `true` if the dimension label should be kept in the data cube, otherwise return `false`.",
"description": "`true` if the dimension label should be kept in the data cube, otherwise `false`.",
"schema": {
"type": "boolean"
}
Expand Down
2 changes: 1 addition & 1 deletion load_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
}
],
"returns": {
"description": "Return `true` if the data should be loaded into the data cube, otherwise return `false`.",
"description": "`true` if the data should be loaded into the data cube, otherwise `false`.",
"schema": {
"type": "boolean"
}
Expand Down
2 changes: 1 addition & 1 deletion merge_cubes.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
}
],
"returns": {
"description": "Return the value that should be stored in the data cube.",
"description": "The value to be stored in the data cube.",
"schema": {
"description": "Any data type."
}
Expand Down
2 changes: 1 addition & 1 deletion meta/subtype-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
}
],
"returns": {
"description": "Return `true` if the data should be used, otherwise return `false`.",
"description": "`true` if the data should be used, otherwise `false`.",
"schema": {
"type": "boolean"
}
Expand Down
2 changes: 1 addition & 1 deletion neq.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}
],
"returns": {
"description": "Returns `true` if `x` is *not* equal to `y`, `null` if any operand is `null`, otherwise `false`.",
"description": "`true` if `x` is *not* equal to `y`, `null` if any operand is `null`, otherwise `false`.",
"schema": {
"type": [
"boolean",
Expand Down
2 changes: 1 addition & 1 deletion proposals/reduce_dimension_binary.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
}
],
"returns": {
"description": "Return the value that should be stored in the data cube.",
"description": "The value to be stored in the data cube.",
"schema": {
"description": "Any data type."
}
Expand Down
2 changes: 1 addition & 1 deletion reduce_dimension.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}
],
"returns": {
"description": "Return the value that should be stored in the data cube.",
"description": "The value to be stored in the data cube.",
"schema": {
"description": "Any data type."
}
Expand Down
2 changes: 1 addition & 1 deletion resample_cube_temporal.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
}
],
"returns": {
"description": "Return the value that should be stored in the data cube.",
"description": "The value to be stored in the data cube.",
"schema": {
"description": "Any data type."
}
Expand Down
2 changes: 1 addition & 1 deletion text_merge.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}
],
"returns": {
"description": "Returns a string containing a string representation of all the array elements in the same order, with the separator between each element.",
"description": "A string containing a string representation of all the array elements in the same order, with the separator between each element.",
"schema": {
"type": "string"
}
Expand Down

0 comments on commit bfc55d7

Please sign in to comment.