From ee9dbcf647cdb72b13fc6964035b766fcd2a2898 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Wed, 15 Jan 2025 10:29:23 -0600 Subject: [PATCH] docs: fix example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 696342b..f23653a 100644 --- a/README.md +++ b/README.md @@ -1100,7 +1100,7 @@ You can also retrieve all the pages of message batches without having to impleme using AnthropicClient; using AnthropicClient.Models; -var pageResponses = await client.ListAllMessageBatchesAsync(); +var pageResponses = client.ListAllMessageBatchesAsync(); await foreach (var response in pageResponses) {