Skip to content

Commit

Permalink
fix: add possible values in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthiee committed May 30, 2024
1 parent fedfd31 commit f1b6bc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/actions/src/ActionHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ function setSelectedItemFromListVariable(variableName: string | Variable, item:
*
* @param {string | Variable} variableName - The name of the number variable or a variable object.
*
* @param separator The decimal separator.
* @param separator The decimal separator (`''`, `'.'`, `','`, `' '`).
*/
function setNumberVariableDecimalSeparator(variableName: string | Variable, separator: NumberSeparator) {
const numberVar = getNumberVariable(variableName);
Expand All @@ -287,7 +287,7 @@ function setNumberVariableDecimalSeparator(variableName: string | Variable, sepa
*
* @param {string | Variable} variableName - The name of the number variable or a variable object.
*
* @param separator The thousands separator.
* @param separator The thousands separator (`''`, `'.'`, `','`, `' '`).
*/
function setNumberVariableThousandsSeparator(variableName: string | Variable, separator: NumberSeparator) {
const numberVar = getNumberVariable(variableName);
Expand Down

0 comments on commit f1b6bc5

Please sign in to comment.