docs: fix example

This commit is contained in:
Stevan Freeborn
2025-01-15 10:29:23 -06:00
parent 07cadf17af
commit ee9dbcf647
+1 -1
View File
@@ -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)
{