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:
\\n
(Line feed/newline)\\r
(Carriage return)\\t
(Horizontal tab)\\b
(Backspace)\\f
(Form feed)\\xnn
(Hex, where n is 0-f)\\\\
(Backslash)\\'
(Single quote)\\"
(Double quote)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
.\\n
(Line feed/newline)\\r
(Carriage return)\\t
(Horizontal tab)\\b
(Backspace)\\f
(Form feed)\\xnn
(Hex, where n is 0-f)\\\\
(Backslash)\\'
(Single quote)\\"
(Double quote)