From 75194a56f04b94501839513b59fa1aef7f49c7dd Mon Sep 17 00:00:00 2001 From: Andy Frank Date: Mon, 8 Jan 2024 16:24:08 -0500 Subject: [PATCH] Update docs for Redis -> RedisClient --- readme.md | 2 +- src/redis/pod.fandoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 1114f64..fdac5b5 100644 --- a/readme.md +++ b/readme.md @@ -5,7 +5,7 @@ Native [Fantom](https://fantom.org) API for [Redis](https://redis.io). Usage: ```fantom -r := Redis.open("localhost") +r := RedisClient("localhost") // get/set/del conveniences r.set("foo", 5) diff --git a/src/redis/pod.fandoc b/src/redis/pod.fandoc index 4bc7f2d..b042ee8 100644 --- a/src/redis/pod.fandoc +++ b/src/redis/pod.fandoc @@ -5,7 +5,7 @@ Native [Fantom]`https://fantom.org` API for [Redis]`https://redis.io`. Usage: - r := Redis.open("localhost") + r := RedisClient("localhost") // get/set/del conveniences r.set("foo", 5)