Skip to content

Commit 96d35bc

Browse files
committed
Fix pivots and indents
1 parent 46d7890 commit 96d35bc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/azure-functions/how-to-create-function-azure-cli.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In Azure Functions, a function project is a container for one or more individual
2929
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
3030
1. In a terminal or command prompt, run this [`func init`](./functions-core-tools-reference.md#func-init) command to create a function app project in the current folder:
3131
::: zone-end
32-
::: zone pivot="programming-language-csharp"
32+
::: zone pivot="programming-language-csharp"
3333
```console
3434
func init --worker-runtime dotnet-isolated
3535
```
@@ -102,8 +102,9 @@ In Azure Functions, a function project is a container for one or more individual
102102
```console
103103
cd fabrikam-functions
104104
```
105-
::: zone-end
106-
The project root folder contains various files for the project, including configurations files named [local.settings.json](functions-develop-local.md#local-settings-file) and [host.json](functions-host-json.md). Because *local.settings.json* can contain secrets downloaded from Azure, the file is excluded from source control by default in the *.gitignore* file.
105+
::: zone-end
106+
107+
The project root folder contains various files for the project, including configurations files named [local.settings.json](functions-develop-local.md#local-settings-file) and [host.json](functions-host-json.md). Because _local.settings.json_ can contain secrets downloaded from Azure, the file is excluded from source control by default in the _.gitignore_ file.
107108
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
108109
2. Use this `func new` command to add a function to your project:
109110

0 commit comments

Comments
 (0)