From d89c85fec55db11b0cc5ce515e83f286758ee09a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Pa=C5=BEourek?= Date: Thu, 18 Oct 2018 17:13:27 +0200 Subject: [PATCH] Fixed samples in README.md I noticed some of the code in README was a bit out of date, so I updated it. Just a tiny tweak really. Thanks. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c4c2adf..dbcb791 100644 --- a/README.md +++ b/README.md @@ -128,13 +128,13 @@ var events = await client.GetAsync(root, "EventsResources"); Use the client to navigate links from entity to entity: ```csharp -var matched = await client.List( +var matched = await client.ListAsync( events, "Items", new Dictionary{{"count", 10}, {"render", true}}); foreach (var match in matched) - Console.WriteLine(matched.RenderedMessage); + Console.WriteLine(match.RenderedMessage); ``` ### Package versioning