Skip to content

Commit b91b347

Browse files
committed
More feedback
1 parent d8ebfb5 commit b91b347

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/functions-how-to-github-actions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Setting up the environment can be done using one of the publish setup actions.
6262
|**JavaScript** | `actions/setup-node` |
6363
|**Python** | `actions/setup-python` |
6464

65-
The following example is a fragment of the .yaml file for a function app that uses:
65+
The following examples show the part of the workflow that sets up the environment for the various supported languages:
6666

6767
**JavaScript**
6868

@@ -90,7 +90,7 @@ The following example is a fragment of the .yaml file for a function app that us
9090
python-version: 3.6
9191
```
9292
93-
**Dot Net**
93+
**.NET**
9494
9595
```yaml
9696
- name: 'Login via Azure CLI'
@@ -122,7 +122,7 @@ The following example is a fragment of the .yaml file for a function app that us
122122
123123
This depends on the language and for languages supported by Azure Functions, this section should be the standard build steps of each language.
124124
125-
The following example is a fragment of the .yaml file for a function app that uses:
125+
The following examples show the part of the workflow that builds the function app, in the various supported languages.:
126126
127127
**JavaScript**
128128
@@ -153,7 +153,7 @@ The following example is a fragment of the .yaml file for a function app that us
153153
popd
154154
```
155155
156-
**Dot Net**
156+
**.NET**
157157
158158
```yaml
159159
- name: 'Run dotnet build'

0 commit comments

Comments
 (0)