From 98bc68c2bf92a76c397d4e56ceae16b0c374f3d2 Mon Sep 17 00:00:00 2001 From: toby Date: Tue, 2 May 2017 12:17:43 -0400 Subject: [PATCH] Update descriptions to explain context awareness --- src/core/config/OperationConfig.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/core/config/OperationConfig.js b/src/core/config/OperationConfig.js index af9ebade..c4276465 100755 --- a/src/core/config/OperationConfig.js +++ b/src/core/config/OperationConfig.js @@ -3256,6 +3256,8 @@ const OperationConfig = { "Snake case is all lower case with underscores as word boundaries.", "

", "e.g. this_is_snake_case", + "

", + "'Attempt to be context aware' will make the operation attempt to nicely transform variable and function names.", ].join("\n"), run: Code.runToSnakeCase, inputType: "string", @@ -3275,6 +3277,8 @@ const OperationConfig = { "Camel case is all lower case except letters after word boundaries which are uppercase.", "

", "e.g. thisIsCamelCase", + "

", + "'Attempt to be context aware' will make the operation attempt to nicely transform variable and function names.", ].join("\n"), run: Code.runToCamelCase, inputType: "string", @@ -3294,6 +3298,8 @@ const OperationConfig = { "Kebab case is all lower case with dashes as word boundaries.", "

", "e.g. this-is-kebab-case", + "

", + "'Attempt to be context aware' will make the operation attempt to nicely transform variable and function names.", ].join("\n"), run: Code.runToKebabCase, inputType: "string",