From 13ff609b9d6a95e0f60b111d04ced72a21d98e5e Mon Sep 17 00:00:00 2001 From: Andy Stabler Date: Thu, 11 Mar 2021 08:38:15 +0000 Subject: [PATCH] Fix typos --- tutorial/01.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/01.markdown b/tutorial/01.markdown index 2be950b..44dc3ca 100644 --- a/tutorial/01.markdown +++ b/tutorial/01.markdown @@ -4,8 +4,8 @@ The essence of a key-value store is the ability to store some data, called a value, inside a key. This data can later be retrieved only if we know the exact key used to store it. -Often Redis it is called a data structure server because it has outer key-value shell, but each -value can contain a complex data structure, such as a string, a list, a hashes, or ordered data +Often Redis is called a data structure server because it has an outer key-value shell, but each +value can contain a complex data structure, such as a string, a list, a hash, or ordered data structures called sorted sets as well as probabilistic data structures like hyperloglog. As a first example, we can use the command [SET](#help) to store the value "fido" at key "server:name":