Skip to content

Commit

Permalink
Update operation description
Browse files Browse the repository at this point in the history
  • Loading branch information
j433866 committed Jan 8, 2019
1 parent 1a827ef commit 8ac5b48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operations/Subsection.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Subsection extends Operation {
this.name = "Subsection";
this.flowControl = true;
this.module = "Regex";
this.description = "Select a part of the input data using regex, and run all subsequent operations on each match separately.";
this.description = "Select a part of the input data using a regular expression (regex), and run all subsequent operations on each match separately.<br><br>You can use up to one capture group, where the recipe will only be run on the data in the capture group. If there's more than one capture group, only the first one will be operated on.";
this.infoURL = "";
this.inputType = "string";
this.outputType = "string";
Expand Down

0 comments on commit 8ac5b48

Please sign in to comment.