From 3721ffeb0570d8ef1240711387d2ffb7e90b921b Mon Sep 17 00:00:00 2001 From: Vinay Banakar Date: Thu, 9 Sep 2021 02:33:54 +0530 Subject: [PATCH] Minor example fix in readme Get only takes the key and not value. --- initial-kv/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/initial-kv/README.md b/initial-kv/README.md index 9e88d12..a7c2bba 100644 --- a/initial-kv/README.md +++ b/initial-kv/README.md @@ -109,7 +109,7 @@ database. Thus, when you later run `kv` and try to get the `1` key, you get the value back: ```sh -prompt> ./kv g,1,first +prompt> ./kv g,1 1,first prompt> ```