Skip to content

Commit ce55249

Browse files
committed
Fixed inconsistent in/out usage for client binding
1 parent 31d7344 commit ce55249

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ If you're using scripting languages (for example, *.csx* or *.js* files) for dev
514514
"taskHub": "<Optional - name of the task hub>",
515515
"connectionName": "<Optional - name of the connection string app setting>",
516516
"type": "durableClient",
517-
"direction": "out"
517+
"direction": "in"
518518
}
519519
```
520520

articles/azure-functions/durable/durable-functions-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ The following examples illustrate these various ways of accessing entities.
161161
162162
### Example: Client signals an entity
163163

164-
To access entities from an ordinary Azure Function, which is also known as a client function, use the [entity client output binding](durable-functions-bindings.md#entity-client). The following example shows a queue-triggered function signaling an entity using this binding.
164+
To access entities from an ordinary Azure Function, which is also known as a client function, use the [entity client binding](durable-functions-bindings.md#entity-client). The following example shows a queue-triggered function signaling an entity using this binding.
165165

166166
```csharp
167167
[FunctionName("AddFromQueue")]

0 commit comments

Comments
 (0)