Skip to content

Commit d668f74

Browse files
committed
Fix some spelling issues
1 parent 9d2b0e4 commit d668f74

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/azure-functions/functions-bindings-http-webhook-output.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The default return value for an HTTP-triggered function is:
2020
::: zone pivot="programming-language-csharp"
2121
## Attribute
2222

23-
Both [in-process](functions-dotnet-class-library.md) and [isolated process](dotnet-isolated-process-guide.md) C# libraries don'r require an attribute. C# script uses a function.json configuration file.
23+
Both [in-process](functions-dotnet-class-library.md) and [isolated process](dotnet-isolated-process-guide.md) C# libraries don't require an attribute. C# script uses a function.json configuration file.
2424

2525
# [In-process](#tab/in-process)
2626

articles/azure-functions/functions-bindings-storage-queue-trigger.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ Access the message data by using a method parameter such as `string paramName`.
392392
* `byte[]`
393393
* [QueueMessage]
394394

395-
When binding to an object, the Functions runtime tries to deserializes the JSON payload into an instance of an arbitrary class defined in your code. For examples using [QueueMessage], see [the GitHub repository for the extension](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues#examples).
395+
When binding to an object, the Functions runtime tries to deserialize the JSON payload into an instance of an arbitrary class defined in your code. For examples using [QueueMessage], see [the GitHub repository for the extension](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues#examples).
396396

397397
[!INCLUDE [functions-bindings-storage-attribute](../../includes/functions-bindings-storage-attribute.md)]
398398

@@ -405,7 +405,7 @@ Access the message data by using a method parameter such as `string paramName`.
405405
* `byte[]`
406406
* [CloudQueueMessage]
407407

408-
When binding to an object, the Functions runtime tries to deserializes the JSON payload into an instance of an arbitrary class defined in your code. If you try to bind to [CloudQueueMessage] and get an error message, make sure that you have a reference to [the correct Storage SDK version](functions-bindings-storage-queue.md).
408+
When binding to an object, the Functions runtime tries to deserialize the JSON payload into an instance of an arbitrary class defined in your code. If you try to bind to [CloudQueueMessage] and get an error message, make sure that you have a reference to [the correct Storage SDK version](functions-bindings-storage-queue.md).
409409

410410
[!INCLUDE [functions-bindings-storage-attribute](../../includes/functions-bindings-storage-attribute.md)]
411411

@@ -426,7 +426,7 @@ Access the message data by using a method parameter such as `string paramName`.
426426
* `byte[]`
427427
* [QueueMessage]
428428

429-
When binding to an object, the Functions runtime tries to deserializes the JSON payload into an instance of an arbitrary class defined in your code. For examples using [QueueMessage], see [the GitHub repository for the extension](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues#examples).
429+
When binding to an object, the Functions runtime tries to deserialize the JSON payload into an instance of an arbitrary class defined in your code. For examples using [QueueMessage], see [the GitHub repository for the extension](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues#examples).
430430

431431

432432
# [Extension 2.x+](#tab/extensionv2/csharp-script)
@@ -438,7 +438,7 @@ Access the message data by using a method parameter such as `string paramName`.
438438
* `byte[]`
439439
* [CloudQueueMessage]
440440

441-
When binding to an object, the Functions runtime tries to deserializes the JSON payload into an instance of an arbitrary class defined in your code. If you try to bind to [CloudQueueMessage] and get an error message, make sure that you have a reference to [the correct Storage SDK version](functions-bindings-storage-queue.md).
441+
When binding to an object, the Functions runtime tries to deserialize the JSON payload into an instance of an arbitrary class defined in your code. If you try to bind to [CloudQueueMessage] and get an error message, make sure that you have a reference to [the correct Storage SDK version](functions-bindings-storage-queue.md).
442442

443443
---
444444
::: zone-end

0 commit comments

Comments
 (0)