diff --git a/README.md b/README.md index eb2d649f2e3cd9103b60011007be0105d92b4211..b361a1be0c348418f364f1521e35b922f782c0a3 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The `GremlinClient` communicates asynchronously with the Gremlin Server using we >>> from aiogremlin import GremlinClient ``` -The Gremlin Server responds with messages in chunks, `GremlinClient.submit` submits a script to the server, and returns a `GremlinResponse` object. This object provides two methods: `get` and `stream`. `get` collects all of the response messages and returns them as a Python list. `stream` returns an object of the type `GremlinResponseStream` that implements a method `read`. This allows you to read the response without loading all of the messages into memory. +The Gremlin Server responds with messages in chunks, `GremlinClient.submit` submits a script to the server, and returns a `GremlinResponse` object. This object provides the methods: `get` and the property `stream`. `get` collects all of the response messages and returns them as a Python list. `stream` returns an object of the type `GremlinResponseStream` that implements a method `read`. This allows you to read the response without loading all of the messages into memory. ```python