Commit 187094f9 authored by Marc Gravell's avatar Marc Gravell

readme: suffix is Async, not Await

parent 8739aca9
......@@ -128,7 +128,7 @@ There are 3 primary usage mechanisms with StackExchange.Redis:
The synchronous usage is already shown in the examples above. This is the simplest usage, and does not involve the [TPL][1].
For asynchronous uage, the key difference is the `Await` suffix on methods, and (typically) the use of the `await` language feature. For example:
For asynchronous uage, the key difference is the `Async` suffix on methods, and (typically) the use of the `await` language feature. For example:
string value = "abcdefg";
await db.StringSetAsync("mykey", value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment