Skip to content

Commit 58b6023

Browse files
authored
Merge pull request #98904 from craigshoemaker/patch-3
Update JavaScript usage text
2 parents 8a7353d + e64d61c commit 58b6023

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/functions-bindings-storage-blob.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ This article explains how to work with Azure Blob storage bindings in Azure Func
2323
2424
## Packages - Functions 1.x
2525

26-
The Blob storage bindings are provided in the [Microsoft.Azure.WebJobs](https://www.nuget.org/packages/Microsoft.Azure.WebJobs) NuGet package, version 2.x. Source code for the package is in the [azure-webjobs-sdk](https://github.com/Azure/azure-webjobs-sdk/tree/v2.x/src/Microsoft.Azure.WebJobs.Storage/Blob) GitHub repository.
26+
The Blob storage bindings are provided in the [Microsoft.Azure.WebJobs](https://www.nuget.org/packages/Microsoft.Azure.WebJobs) Nuget package, version 2.x. Source code for the package is in the [azure-webjobs-sdk](https://github.com/Azure/azure-webjobs-sdk/tree/v2.x/src/Microsoft.Azure.WebJobs.Storage/Blob) GitHub repository.
2727

2828
[!INCLUDE [functions-package-auto](../../includes/functions-package-auto.md)]
2929

3030
[!INCLUDE [functions-storage-sdk-version](../../includes/functions-storage-sdk-version.md)]
3131

3232
## Packages - Functions 2.x and higher
3333

34-
The Blob storage bindings are provided in the [Microsoft.Azure.WebJobs.Extensions.Storage](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage) NuGet package, version 3.x. Source code for the package is in the [azure-webjobs-sdk](https://github.com/Azure/azure-webjobs-sdk/tree/dev/src/Microsoft.Azure.WebJobs.Extensions.Storage/Blobs) GitHub repository.
34+
The Blob storage bindings are provided in the [Microsoft.Azure.WebJobs.Extensions.Storage](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage) Nuget package, version 3.x. Source code for the package is in the [azure-webjobs-sdk](https://github.com/Azure/azure-webjobs-sdk/tree/dev/src/Microsoft.Azure.WebJobs.Extensions.Storage/Blobs) GitHub repository.
3535

3636
[!INCLUDE [functions-package-v2](../../includes/functions-package-v2.md)]
3737

@@ -340,7 +340,7 @@ The following table explains the binding configuration properties that you set i
340340

341341
# [JavaScript](#tab/javascript)
342342

343-
Access blob data using `context.bindings.<name from function.json>`.
343+
Access blob data using `context.bindings.<NAME>` where `<NAME>` matches the value defined in *function.json*.
344344

345345
# [Python](#tab/python)
346346

@@ -776,7 +776,7 @@ The following table explains the binding configuration properties that you set i
776776

777777
# [JavaScript](#tab/javascript)
778778

779-
Access the blob data using `context.bindings.<name from function.json>`.
779+
Access blob data using `context.bindings.<NAME>` where `<NAME>` matches the value defined in *function.json*.
780780

781781
# [Python](#tab/python)
782782

0 commit comments

Comments
 (0)