Skip to content

Commit b0508b0

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

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Most expressions are wrapped in curly braces. For example, in a queue trigger fu
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

21-
App settings are also useful whenever you want to change configuration based on the environment. For example, in a test environment, you might want to monitor a different container for queue storage or blob storage.
21+
App settings are also useful whenever you want to change a configuration based on the environment. For example, in a test environment, you might want to monitor a different container for queue storage or blob storage.
2222

2323
Binding expressions for app settings are identified differently from other binding expressions: they're wrapped in percent signs rather than curly braces. For example, if the path for a blob output binding is `%Environment%/newblob.txt` and the `Environment` app setting value is `Development`, a blob is created in the `Development` container.
2424

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-
## <a name = "explicitly-install-extensions"></a>Explicitly installing extensions
34+
## Explicitly install 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

@@ -63,7 +63,7 @@ To manually install binding extensions:
6363
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

66-
## Next steps
66+
## Next step
6767

6868
> [!div class="nextstepaction"]
6969
> [Azure Functions trigger and binding example](./functions-bindings-example.md)

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can mix and match bindings to suit your function's specific scenario. Bindin
2020

2121
Triggers and bindings let you avoid hardcoding access to other services. Your function receives data (for example, the content of a queue message) in function parameters. You send data (for example, to create a queue message) by using the return value of the function.
2222

23-
Consider the following examples of how you could implement functions.
23+
Consider the following examples of how you could implement functions:
2424

2525
| Example scenario | Trigger | Input binding | Output binding |
2626
|-------------|---------|---------------|----------------|
@@ -39,7 +39,7 @@ These examples aren't meant to be exhaustive, but they illustrate how you can us
3939

4040
Not all services support both input and output bindings. See your specific binding extension for [specific code examples for bindings](#bindings-code-examples).
4141

42-
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of the article.
42+
Triggers and bindings are defined differently depending on the development language. Make sure to select your language at the [top](#top) of this article.
4343

4444
Trigger and binding names are limited to alphanumeric characters and `_`, the underscore.
4545

@@ -54,7 +54,7 @@ The HTTP trigger (`HttpTrigger`) is defined on the `Run` method for a function n
5454

5555
:::code language="csharp" source="~/functions-docs-csharp/functions-add-output-binding-storage-queue-isolated/HttpExample.cs" range="11-14":::
5656

57-
This example shows the `MultiResponse` object definition. The object definition returns `HttpResponse` to the HTTP request and writes a message to a storage queue by using a `QueueOutput` binding.
57+
This example shows the `MultiResponse` object definition. The object definition returns `HttpResponse` to the HTTP request and writes a message to a storage queue by using a `QueueOutput` binding:
5858

5959
:::code language="csharp" source="~/functions-docs-csharp/functions-add-output-binding-storage-queue-isolated/HttpExample.cs" range="33-38":::
6060

@@ -96,7 +96,7 @@ In Node.js for Azure Functions version 3, you configure triggers and bindings in
9696

9797
::: zone-end
9898

99-
The following example is an HTTP-triggered function that creates a queue item for each received HTTP request.
99+
This example is an HTTP-triggered function that creates a queue item for each received HTTP request:
100100

101101
::: zone pivot="programming-language-javascript"
102102
### [v4](#tab/node-v4)

0 commit comments

Comments
 (0)