summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorItamar Haber <itamar@redislabs.com>2020-08-11 21:10:58 +0300
committerGitHub <noreply@github.com>2020-08-11 21:10:58 +0300
commit82451a4717c26f294a1664eeca55c371481c37d1 (patch)
tree6d2c066c2b860f03906a808561bcb8dd2d1b27cd /README.md
parentff1e4a7063c4de96bba3661f5f282ed61b6dfe8e (diff)
parentabf8150b2e91927f73dccd670e49b655615b8b5a (diff)
downloadredis-82451a4717c26f294a1664eeca55c371481c37d1.tar.gz
Merge pull request #6777 from pponnuvel/typos_in_readme
Fix typos in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index a3c5def9f..d8f8f7880 100644
--- a/README.md
+++ b/README.md
@@ -336,7 +336,7 @@ There are two special functions called periodically by the event loop:
Inside server.c you can find code that handles other vital things of the Redis server:
* `call()` is used in order to call a given command in the context of a given client.
-* `activeExpireCycle()` handles eviciton of keys with a time to live set via the `EXPIRE` command.
+* `activeExpireCycle()` handles eviction of keys with a time to live set via the `EXPIRE` command.
* `freeMemoryIfNeeded()` is called when a new write command should be performed but Redis is out of memory according to the `maxmemory` directive.
* The global variable `redisCommandTable` defines all the Redis commands, specifying the name of the command, the function implementing the command, the number of arguments required, and other properties of each command.
@@ -429,7 +429,7 @@ Other C files
* `sds.c` is the Redis string library, check http://github.com/antirez/sds for more information.
* `anet.c` is a library to use POSIX networking in a simpler way compared to the raw interface exposed by the kernel.
* `dict.c` is an implementation of a non-blocking hash table which rehashes incrementally.
-* `scripting.c` implements Lua scripting. It is completely self contained from the rest of the Redis implementation and is simple enough to understand if you are familar with the Lua API.
+* `scripting.c` implements Lua scripting. It is completely self contained from the rest of the Redis implementation and is simple enough to understand if you are familiar with the Lua API.
* `cluster.c` implements the Redis Cluster. Probably a good read only after being very familiar with the rest of the Redis code base. If you want to read `cluster.c` make sure to read the [Redis Cluster specification][3].
[3]: http://redis.io/topics/cluster-spec