docs(readme): Fix typo

This commit is contained in:
Ali Afsharzadeh 2022-05-04 10:56:55 +04:30 committed by GitHub
parent e129526593
commit 699fff7823
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
from redis_om import get_redis_connection
redis_conn = get_redis_conection()
redis_conn = get_redis_connection()
redis_conn.set("hello", "world")
```