Skip to content

Commit fbe1aa5

Browse files
authored
Merge pull request #104359 from kraigb/master
Clarify what the arguments are
2 parents 0c13515 + 345fdd3 commit fbe1aa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-create-first-function-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ In Azure Functions, a function project is a container for one or more individual
9292
cd LocalFunctionProj
9393
```
9494
95-
1. Add a function to your project by using the following command, where the `--name` argument is the unique name of your function and the `--template` argument specifies the function's trigger. `func new` create a subfolder matching the function name that contains a code file appropriate to the project's chosen language and a configuration file named *function.json*.
95+
1. Add a function to your project by using the following command, where the `--name` argument specifies the unique name of your function (HttpExample in this case) and the `--template` argument specifies the function's trigger (HTTP trigger). This `func new` command creates a subfolder matching the function name that contains a code file appropriate to the project's chosen language and a configuration file named *function.json*.
9696
9797
```
9898
func new --name HttpExample --template "HTTP trigger"

0 commit comments

Comments
 (0)