From e165301185a5a7494718c53d4c356d528e0962ad Mon Sep 17 00:00:00 2001 From: James Rodewig Date: Tue, 10 Sep 2024 18:30:10 -0400 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6cd973b..5e0fc470 100644 --- a/README.md +++ b/README.md @@ -463,7 +463,7 @@ FaunaStream stream = client.stream(request, Product.class); CompletableFuture> futureStream = client.asyncStream(request, Product.class); ``` -Alternatively, you also pass an FQL that returns a stream token to `stream()` or +Alternatively, you can pass an FQL that returns a stream token to `stream()` or `asyncStream()`: ```java