Merge pull request #232 from guoard/patch-1

docs(readme): Fix typo
This commit is contained in:
Simon Prickett 2022-05-04 17:41:21 +01:00 committed by GitHub
commit 8a3f0d8813
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -322,7 +322,7 @@ If you don't want to get a Redis connection from a model class, you can also use
```python ```python
from redis_om import get_redis_connection from redis_om import get_redis_connection
redis_conn = get_redis_conection() redis_conn = get_redis_connection()
redis_conn.set("hello", "world") redis_conn.set("hello", "world")
``` ```