From cf1ca565f032a31060f1cda0410177df2495b0a0 Mon Sep 17 00:00:00 2001 From: chrisronline Date: Fri, 15 Apr 2022 10:19:37 -0400 Subject: [PATCH] Fix wrong config in comments --- .../triggers_actions_ui/common/experimental_features.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts b/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts index f95ce25122923..3a081a5a45486 100644 --- a/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts +++ b/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts @@ -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({ @@ -24,7 +24,7 @@ const TriggersActionsUIInvalidExperimentalValue = class extends Error {}; const allowedKeys = Object.keys(allowedExperimentalValues) as Readonly; /** - * 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