diff --git a/docs/tutorial/commands/name.md b/docs/tutorial/commands/name.md index 458f54101..7d3ddc1a5 100644 --- a/docs/tutorial/commands/name.md +++ b/docs/tutorial/commands/name.md @@ -44,3 +44,13 @@ Creating user: Camila ``` + +Note that any underscores in the function name will be replaced with dashes. + +So if your function is something like: + +```Python +def create_user(username: str): + ... +``` +Then the command name will be `create-user`.