Skip to content

Commit 5de7094

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

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

articles/azure-functions/extension-bundles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ 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-install-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-installing-extensions).
4848

4949
## Previewing extension bundles
5050

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-
## 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: 2 additions & 2 deletions
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-
## 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

@@ -60,7 +60,7 @@ To manually install binding extensions:
6060

6161
1. Validate your app functionality locally and then redeploy your project, including `extensions.csproj`, to your function app in Azure.
6262

63-
As soon as possible, you should [switch your app back to using the latest supported extension bundle](./extension-bundles.md#define-an-extension-bundle-reference).
63+
As soon as possible, you should [switch your app back to using the latest supported extension bundle](./extension-bundles.md#defining-an-extension-bundle-reference).
6464
::: zone-end
6565

6666
## Next steps

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,5 +233,5 @@ You can create custom input and output bindings. Bindings must be authored in .N
233233
- [Register Azure Functions binding extensions](./functions-bindings-register.md)
234234
- Testing:
235235
- [Strategies for testing your code in Azure Functions](functions-test-a-function.md)
236-
- [Manually run a non HTTP-triggered function](functions-manually-run-non-http.md)
236+
- [Manually run a non-HTTP-triggered function](functions-manually-run-non-http.md)
237237
- [Handling binding errors](./functions-bindings-errors.md)

0 commit comments

Comments
 (0)