Skip to content

Commit c73afa9

Browse files
authored
Update to Readme.md (#293)
Fixing slight spelling issue
1 parent 3cf3f70 commit c73afa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/Client/DaprClient/Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Because, the same operation subscribes events on the *withdraw* topic, it can be
9393
dapr publish -t withdraw -p '{"id": "17", "amount": 15 }'
9494
```
9595

96-
Operation *deposite* can be invoked by HTTP/S POST request and also triggered as a *cloud event* by publishing the event to the topic with name 'deposite'.
96+
Operation *deposit* can be invoked by HTTP/S POST request and also triggered as a *cloud event* by publishing the event to the topic with name 'deposit'.
9797
It is mapped as:
9898
```c#
9999
endpoints.MapPost("deposit", Withdraw).WithTopic("deposit");
@@ -106,4 +106,4 @@ dapr publish -t deposit -p '{"id": "17", "deposit": 15 }'
106106
The method *PublishDepositeEventToRoutingSampleAsync* demonstrates how to publish an event to the dapr runtime, which triggers the REST operation 'deposit'.
107107
```c#
108108
await client.PublishEventAsync("deposit", new { id = "17", amount = (decimal)10, });
109-
```
109+
```

0 commit comments

Comments
 (0)