From 3a12b23530bb81f3501e086a8f1ea6971514d4f5 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Mon, 21 Dec 2015 18:28:54 +1100 Subject: [PATCH] README: Fix typo. eviciton => eviction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2cffae0b..b5309e2ea 100644 --- a/README.md +++ b/README.md @@ -316,7 +316,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.