From ae13db3b6cdc6d84d53ea37e014831e4eb27c240 Mon Sep 17 00:00:00 2001 From: Yadong Wen Date: Wed, 22 Mar 2017 22:53:15 -0400 Subject: [PATCH] Fix typo (#29) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 866972af..312af7a0 100644 --- a/README.md +++ b/README.md @@ -943,7 +943,7 @@ A key-value store generally allows for O(1) reads and writes and is often backed Key-value stores provide high performance and are often used for simple data models or for rapidly-changing data, such as an in-memory cache layer. Since they offer only a limited set of operations, complexity is shifted to the application layer if additional operations are needed. -A key-value store is the basis for more complex system systems such as a document store, and in some cases, a graph database. +A key-value store is the basis for more complex systems such as a document store, and in some cases, a graph database. ##### Source(s) and further reading: key-value store