From 0c923ca995ed4859e2d1e476fc8cd95e8cdfd837 Mon Sep 17 00:00:00 2001 From: r Date: Tue, 24 May 2022 16:18:54 -0500 Subject: [PATCH] docs(Getting Started): Fix get_redis_connection() example --- docs/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started.md b/docs/getting_started.md index 6e81854..a017f18 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -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") ```