summaryrefslogtreecommitdiff
path: root/src/object.c
diff options
context:
space:
mode:
authorBinbin <binloveplay1314@qq.com>2022-08-24 20:07:43 +0800
committerGitHub <noreply@github.com>2022-08-24 15:07:43 +0300
commit78259826cd35fd1b03cf0fce122c6e3e2fd69961 (patch)
tree3febbe22386ec5a76263917100ad70556f3f39f5 /src/object.c
parentc07212372c3e03e9b4f459142d01a5f1895a0f9c (diff)
downloadredis-78259826cd35fd1b03cf0fce122c6e3e2fd69961.tar.gz
Bump codespell from 2.1.0 to 2.2.1 in /.codespell (#11184)
add a few terms to the white list, and fix a few newly detected typos
Diffstat (limited to 'src/object.c')
-rw-r--r--src/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object.c b/src/object.c
index 0f36f8f8c..6a5e85e9d 100644
--- a/src/object.c
+++ b/src/object.c
@@ -62,7 +62,7 @@ robj *createObject(int type, void *ptr) {
* objects such as small integers from different threads without any
* mutex.
*
- * A common patter to create shared objects:
+ * A common pattern to create shared objects:
*
* robj *myobject = makeObjectShared(createObject(...));
*