From 7b20aba2ffb0cab2b962d9467cf7636f6603ab3b Mon Sep 17 00:00:00 2001 From: n1474335 Date: Thu, 4 Jan 2018 18:32:03 +0000 Subject: [PATCH] Improved descriptions for 'Unescape string' and 'Escape string' operations --- src/core/config/OperationConfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/config/OperationConfig.js b/src/core/config/OperationConfig.js index 43e06c31..835fa2d8 100755 --- a/src/core/config/OperationConfig.js +++ b/src/core/config/OperationConfig.js @@ -3478,14 +3478,14 @@ const OperationConfig = { }, "Escape string": { module: "Default", - description: "Escapes special characters in a string so that they do not cause conflicts. For example, Don't stop me now becomes Don\\'t stop me now.", + description: "Escapes special characters in a string so that they do not cause conflicts. For example, Don't stop me now becomes Don\\'t stop me now.

Supports the following escape sequences:", inputType: "string", outputType: "string", args: [] }, "Unescape string": { module: "Default", - description: "Unescapes characters in a string that have been escaped. For example, Don\\'t stop me now becomes Don't stop me now.", + description: "Unescapes characters in a string that have been escaped. For example, Don\\'t stop me now becomes Don't stop me now.

Supports the following escape sequences:", inputType: "string", outputType: "string", args: []