Skip to content

Commit 6b30013

Browse files
committed
edit pass: azure-functions-triggers-and-bindings
1 parent 5de7094 commit 6b30013

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

articles/azure-functions/extension-bundles.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You define an extension bundle reference in the `host.json` project file by addi
2727

2828
## Supported extension bundles
2929

30-
This table lists all `Microsoft.Azure.Functions.ExtensionBundle` bundle versions and the current [support state](#support-policy).
30+
This table lists all `Microsoft.Azure.Functions.ExtensionBundle` bundle versions and the current [support state](#support-policy):
3131

3232
| Bundle version | Version in host.json | Support state | End-of-support date |
3333
| --- | --- | --- | --- |
@@ -44,11 +44,11 @@ Keep these considerations in mind when you work with extension bundles:
4444

4545
- When possible, you should set a `version` range value in `host.json` from the preceding table, such as `[4.0.0, 5.0.0)`, instead of defining a custom range.
4646
- Use the latest version range to obtain optimal app performance and access to the latest features.
47-
- In the unlikely event that you can't use an extension bundle, you must instead [explicitly install extensions](./functions-bindings-register.md#explicitly-installing-extensions).
47+
- In the unlikely event that you can't use an extension bundle, you must instead [explicitly install extensions](./functions-bindings-register.md#explicitly-install-extensions).
4848

4949
## Previewing extension bundles
5050

51-
Prerelease versions of specific binding extensions are maintained in a preview extension bundle. The preview extension bundle (`Microsoft.Azure.Functions.ExtensionBundle.Preview`) allows you to take advantage of preview extensions and new behaviors in existing extensions before they reach general availability (GA).
51+
Prerelease versions of specific binding extensions are maintained in a preview extension bundle: `Microsoft.Azure.Functions.ExtensionBundle.Preview`. You can use this preview extension bundle to take advantage of preview extensions and new behaviors in existing extensions before they reach general availability (GA).
5252

5353
Keep these considerations in mind when you choose to use a non-GA extension bundle:
5454

@@ -62,10 +62,10 @@ Keep these considerations in mind when you choose to use a non-GA extension bund
6262
- Pin your bundle to a specific, well-tested bundle version instead of to a range. Pinning prevents automatic upgrading of your bundle version before you have a chance to verify the update in a nonproduction environment.
6363
- Move your app to using a GA bundle version as soon as the functionality becomes available in a fully supported bundle release.
6464
- To stay informed about bundle updates, including moving from preview to GA, you should:
65-
- Monitor preview bundle version releases on the [release page for extension bundles](https://github.com/Azure/azure-functions-extension-bundles/releases).
65+
- Monitor releases of preview bundle versions on the [release page for extension bundles](https://github.com/Azure/azure-functions-extension-bundles/releases).
6666
- Monitor [extension-specific reference documentation](./functions-triggers-bindings.md).
6767
- Review the NuGet package versions of specific preview extensions that you're using.
68-
- Track significant updates or changes on the change logs published on NuGet.org for each preview extension.
68+
- Track significant updates or changes in the change logs published on NuGet.org for each preview extension.
6969

7070
## Support policy
7171

articles/azure-functions/functions-bindings-error-pages.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To avoid loss of data or missed messages, you should practice good error handlin
3939
4040
## Retries
4141

42-
There are two kinds of retries available for your functions:
42+
Two kinds of retries are available for your functions:
4343

4444
- Built-in retry behaviors of individual trigger extensions
4545
- Retry policies that the Azure Functions runtime provides
@@ -62,7 +62,7 @@ The following table indicates which triggers support retries and where the retry
6262

6363
## Retry policies
6464

65-
With Azure Functions, you can define retry policies for specific trigger types. The runtime enforces these retry policies. These trigger types currently support retry policies:
65+
With Azure Functions, you can define retry policies for specific trigger types. The runtime enforces these retry policies. The following trigger types currently support retry policies:
6666

6767
- [Azure Cosmos DB](./functions-bindings-cosmosdb-v2-trigger.md)
6868
- [Event Hubs](./functions-bindings-event-hubs-trigger.md)
@@ -205,7 +205,7 @@ You can set these properties on retry policy definitions:
205205
::: zone-end
206206

207207
::: zone pivot="programming-language-javascript"
208-
The way you define the retry policy for the trigger depends on your Node.js version:
208+
The way that you define the retry policy for the trigger depends on your Node.js version:
209209

210210
#### [Node.js v4](#tab/node-v4)
211211

@@ -224,7 +224,7 @@ Here's an example of a fixed-delay retry policy defined in the `function.json` f
224224
::: zone-end
225225

226226
::: zone pivot="programming-language-typescript"
227-
The way you define the retry policy for the trigger depends on your Node.js version.
227+
The way that you define the retry policy for the trigger depends on your Node.js version:
228228

229229
#### [Node.js v4](#tab/node-v4)
230230

articles/azure-functions/functions-bindings-expressions-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ One of the most powerful features of [triggers and bindings](./functions-trigger
1414

1515
Most expressions are wrapped in curly braces. For example, in a queue trigger function, `{queueTrigger}` resolves to the queue message text. If the `path` property for a blob output binding is `container/{queueTrigger}` and a queue message `HelloWorld` triggers the function, a blob named `HelloWorld` is created.
1616

17-
<a name = binding-expressions---app-settings></a>## App settings
17+
## <a name = binding-expressions---app-settings></a>App settings
1818

1919
It's a best practice to manage secrets and connection strings by using app settings rather than configuration files. This practice limits access to these secrets and makes it safe to store files such as `function.json` in public source-control repositories.
2020

articles/azure-functions/functions-bindings-register.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In the unlikely event that you can't use an extension bundle, you must instead e
3131

3232
::: zone-end
3333

34-
<a name = "explicitly-install-extensions"></a>## Explicitly installing extensions
34+
## <a name = "explicitly-install-extensions"></a>Explicitly installing extensions
3535
::: zone pivot="programming-language-csharp"
3636
For projects that use a compiled C# class library, you install the NuGet packages for the extensions that you need as you normally would in your apps. For more information, see the [Visual Studio Code developer guide](functions-develop-vs-code.md?tabs=csharp#install-binding-extensions) or the [Visual Studio developer guide](functions-develop-vs.md#add-bindings).
3737

0 commit comments

Comments
 (0)