Skip to content

Commit cc7c55f

Browse files
committed
acrolinx
1 parent 7d0c30f commit cc7c55f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/functions-event-grid-blob-trigger.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ When you create a Blob Storage trigger function using Visual Studio Code, you al
153153
::: zone-end
154154

155155
::: zone pivot="programming-language-java"
156-
4. In the command palette, enter `Azure Functions: Create Function...` and select `EventGridBlobTrigger`. If you don't see this templates, first select **Change template filter** > **All**.
156+
4. In the command palette, enter `Azure Functions: Create Function...` and select `EventGridBlobTrigger`. If you don't see this template, first select **Change template filter** > **All**.
157157

158158
5. At the prompts, provide the following information:
159159

@@ -207,14 +207,14 @@ Open the generated `EventGridBlobTrigger.js` file and you see a definition for a
207207

208208
:::code language="javascript" source="~/azure-functions-nodejs-v4/js/src/functions/storageBlobTriggerEventGrid1.js" :::
209209

210-
In this definition a `source` of `EventGrid` indicates that an event subscription to the `samples-workitems` blob container is used as the source of the event that starts the trigger.
210+
In this definition, a `source` of `EventGrid` indicates that an event subscription to the `samples-workitems` blob container is used as the source of the event that starts the trigger.
211211
::: zone-end
212212
::: zone pivot="programming-language-typescript"
213213
Open the generated `EventGridBlobTrigger.ts` file and you see a definition for a function that looks something like this:
214214

215215
:::code language="typescript" source="~/azure-functions-nodejs-v4/ts/src/functions/storageBlobTriggerEventGrid1.ts" :::
216216

217-
In this definition a `source` of `EventGrid` indicates that an event subscription to the `samples-workitems` blob container is used as the source of the event that starts the trigger.
217+
In this definition, a `source` of `EventGrid` indicates that an event subscription to the `samples-workitems` blob container is used as the source of the event that starts the trigger.
218218
::: zone-end
219219

220220
## Upgrade the Storage extension

0 commit comments

Comments
 (0)