diff --git a/src/core/operations/ParseFuturexExcryptCommand.mjs b/src/core/operations/ParseFuturexExcryptCommand.mjs
index d6d1c228..e888e3c4 100644
--- a/src/core/operations/ParseFuturexExcryptCommand.mjs
+++ b/src/core/operations/ParseFuturexExcryptCommand.mjs
@@ -100,7 +100,7 @@ function parseField(field) {
}
/**
- * Parse Futurex Excrypt command operation.
+ * Parse Futurex Excrypt Command operation.
*/
class ParseFuturexExcryptCommand extends Operation {
@@ -110,7 +110,7 @@ class ParseFuturexExcryptCommand extends Operation {
constructor() {
super();
- this.name = "Parse Futurex Excrypt command";
+ this.name = "Parse Futurex Excrypt Command";
this.module = "Payment";
this.description = "Paste a Futurex Excrypt command or response into the input field as text.
General syntax: Excrypt messages are enclosed by opening and closing delimiters, typically [ and ]. Inside the message, fields are semicolon-delimited. Each field is a tag/value pair, for example AOECHO where AO is the tag and ECHO is the value. The command code is commonly carried in the AO field.
Input: raw Excrypt message text.
This operation parses the visible Excrypt message syntax, extracts semicolon-delimited fields, splits fields into tag/value pairs, and resolves the AO command code to a known payment command name when available from the Futurex payment integration guide.";
this.inlineHelp = "Syntax: [tagvalue;tagvalue;...] where fields are separated by semicolons and tags are typically two characters such as AO.
Input: raw Futurex Excrypt message text.";