Skip to content

Commit

Permalink
Fix typo (double "of" word) (#2314)
Browse files Browse the repository at this point in the history
  • Loading branch information
aandrukhovich authored Jul 31, 2022
1 parent 01cc2b2 commit da9d903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The above code connects to localhost on port 6379, sets a value in Redis, and re

### Connection Pools

By default, redis-py uses a connection pool to manage connections. Each instance of of a Redis class receives its own connection pool. You can however define your own [redis.ConnectionPool](https://redis.readthedocs.io/en/stable/connections.html#connection-pools)
By default, redis-py uses a connection pool to manage connections. Each instance of a Redis class receives its own connection pool. You can however define your own [redis.ConnectionPool](https://redis.readthedocs.io/en/stable/connections.html#connection-pools)

``` python
>>> pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
Expand Down

0 comments on commit da9d903

Please sign in to comment.