Skip to content

Commit

Permalink
Fix wrong config in comments (#130378)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
Chris Roberson and kibanamachine authored Apr 18, 2022
1 parent 21f8999 commit 188c420
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
export type ExperimentalFeatures = typeof allowedExperimentalValues;

/**
* A list of allowed values that can be used in `xpack.triggersActionsUi.enableExperimental`.
* A list of allowed values that can be used in `xpack.trigger_actions_ui.enableExperimental`.
* This object is then used to validate and parse the value entered.
*/
export const allowedExperimentalValues = Object.freeze({
Expand All @@ -24,7 +24,7 @@ const TriggersActionsUIInvalidExperimentalValue = class extends Error {};
const allowedKeys = Object.keys(allowedExperimentalValues) as Readonly<ExperimentalConfigKeys>;

/**
* Parses the string value used in `xpack.triggersActionsUi.enableExperimental` kibana configuration,
* Parses the string value used in `xpack.trigger_actions_ui.enableExperimental` kibana configuration,
* which should be a string of values delimited by a comma (`,`)
*
* @param configValue
Expand Down

0 comments on commit 188c420

Please sign in to comment.