From 892198e35ed762f2e75fe36654c2b2b515c7a027 Mon Sep 17 00:00:00 2001 From: dsomeshwar Date: Sat, 21 Jul 2018 23:23:04 +0530 Subject: [PATCH] typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dbad7dbf..bf53e4c3f 100644 --- a/README.md +++ b/README.md @@ -380,7 +380,7 @@ The `robj` structure defining Redis objects was already described. Inside a basic level, like functions to allocate new objects, handle the reference counting and so forth. Notable functions inside this file: -* `incrRefcount()` and `decrRefCount()` are used in order to increment or decrement an object reference count. When it drops to 0 the object is finally freed. +* `incrRefCount()` and `decrRefCount()` are used in order to increment or decrement an object reference count. When it drops to 0 the object is finally freed. * `createObject()` allocates a new object. There are also specialized functions to allocate string objects having a specific content, like `createStringObjectFromLongLong()` and similar functions. This file also implements the `OBJECT` command.