From acb877300cce55b78399ab84bda7c0317fbb8c28 Mon Sep 17 00:00:00 2001 From: ctd1500 Date: Fri, 8 May 2015 01:52:48 -0700 Subject: [PATCH] Typo and grammar fixes in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 223ef13c6..d9c90c6ac 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Redis is often referred as a *data structures* server. What this means is that R Data structures implemented into Redis have a few special properties: -* Redis cares to store them on disk, even if they are always served and modified into the server memory. This means that Redis is fast, but that is also non-volatile. +* Redis cares to store them on disk, even if they are always served and modified into the server memory. This means that Redis is fast, but that it is also non-volatile. * Implementation of data structures stress on memory efficiency, so data structures inside Redis will likely use less memory compared to the same data structure modeled using an high level programming language. * Redis offers a number of features that are natural to find in a database, like replication, tunable levels of durability, cluster, high availability. @@ -48,7 +48,7 @@ Fixing build problems with dependencies or cached build options Redis has some dependencies which are included into the `deps` directory. `make` does not rebuild dependencies automatically, even if something in the -source code of dependencies is changes. +source code of the dependencies is changed. When you update the source code with `git pull` or when code inside the dependencies tree is modified in any other way, make sure to use the following