From c0a4b15a2e4ba1af05ee35e897b0ae9dbf95142c Mon Sep 17 00:00:00 2001 From: fauna-chase <73842483+fauna-chase@users.noreply.github.com> Date: Tue, 26 Mar 2024 16:13:38 -0500 Subject: [PATCH] Update README.md Co-authored-by: Lucas Pedroza <40873230+pnwpedro@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a27256e..b6e2fee5 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ except ServiceError as e: Below are examples on how to get started with streaming in the python driver. For more information on streaming capabilities visit our [Streaming Documentation](https://docs.fauna.com/fauna/current/reference/streaming_reference/) There are two ways a stream can be initiated with the python driver: -1. Obtaining a stream token by first issuing a fql query that returns a stream token and providing that to the clients' stream method. +1. Obtaining a stream token by first issuing a fql query that returns a stream token and providing that to the client's stream method. 2. Providing the stream method with a fql query that returns a stream token 1. In this case the stream method will first issue a request to obtain the stream token and then start the stream.