Skip to content

Commit

Permalink
Update REPEAT command help message
Browse files Browse the repository at this point in the history
  • Loading branch information
mdroidian committed Nov 23, 2023
1 parent fb75324 commit f11a738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ export const COMMANDS: {
{
text: "REPEAT",
delayArgs: true,
help: "Repeats the current block a specified number of times\n\n1. Number of times for repeat",
help: "Repeats the content provided a specified number of times\n\n1. Count of repeats (or a SmartBlock command that returns items to iterate over)\n\n2. Content to repeat ",
handler: async (repeatArg = "1", content = "") => {
const argResult = await proccessBlockText(repeatArg);
const argResultNumber = Number(argResult[0].text);
Expand Down

0 comments on commit f11a738

Please sign in to comment.