diff --git a/docs/guides/commands/commands.md b/docs/guides/commands/commands.md index d87f7eb24..b48a19b69 100644 --- a/docs/guides/commands/commands.md +++ b/docs/guides/commands/commands.md @@ -69,7 +69,8 @@ By now, your module should look like this: The next step to creating Commands is actually creating the Commands. -To create a Command, add a method to your module of type `Task`. +To create a Command, add a method to your module of type `Task` or +`Task` depending on your use. Typically, you will want to mark this method as `async`, although it is not required.