Merge pull request #262 from ryanrussell/main

docs(Getting Started): Fix get_redis_connection() example
This commit is contained in:
Simon Prickett 2022-05-25 12:05:29 +01:00 committed by GitHub
commit 234d1a7e7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -732,7 +732,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")
```