Skip to content

Commit 0748da5

Browse files
authored
Merge pull request #4394 from hhunter-ms/issue_4393
[State Mgmt] fix typo
2 parents fe17926 + c3b0059 commit 0748da5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

daprdocs/content/en/developing-applications/building-blocks/state-management/howto-get-save-state.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ State management is one of the most common needs of any new, legacy, monolith, o
1010

1111
In this guide, you'll learn the basics of using the key/value state API to allow an application to save, get, and delete state.
1212

13-
## Example
14-
1513
The code example below _loosely_ describes an application that processes orders with an order processing service which has a Dapr sidecar. The order processing service uses Dapr to store state in a Redis state store.
1614

1715
<img src="/images/building-block-state-management-example.png" width=1000 alt="Diagram showing state management of example service">
@@ -554,7 +552,7 @@ namespace EventService
554552
string DAPR_STORE_NAME = "statestore";
555553
//Using Dapr SDK to retrieve multiple states
556554
using var client = new DaprClientBuilder().Build();
557-
IReadOnlyList<BulkStateItem> mulitpleStateResult = await client.GetBulkStateAsync(DAPR_STORE_NAME, new List<string> { "order_1", "order_2" }, parallelism: 1);
555+
IReadOnlyList<BulkStateItem> multipleStateResult = await client.GetBulkStateAsync(DAPR_STORE_NAME, new List<string> { "order_1", "order_2" }, parallelism: 1);
558556
}
559557
}
560558
}

0 commit comments

Comments
 (0)