summaryrefslogtreecommitdiff
path: root/src/server.c
diff options
context:
space:
mode:
authorBinbin <binloveplay1314@qq.com>2023-03-16 14:50:32 +0800
committerGitHub <noreply@github.com>2023-03-16 08:50:32 +0200
commit0b159b34ea0832f6589b8ee71b44dce7010e7504 (patch)
tree0b61a7a130b63dc6612348c37d3a1ac308276b1c /src/server.c
parentf8a5a4f70ccada85943af90f6f2db3250ee50b27 (diff)
downloadredis-0b159b34ea0832f6589b8ee71b44dce7010e7504.tar.gz
Bump codespell to 2.2.4, fix typos and outupdated comments (#11911)
Fix some seen typos and wrong comments.
Diffstat (limited to 'src/server.c')
-rw-r--r--src/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.c b/src/server.c
index 47988dec9..3a78350ec 100644
--- a/src/server.c
+++ b/src/server.c
@@ -216,7 +216,7 @@ mstime_t commandTimeSnapshot(void) {
* may re-open the same key multiple times, can invalidate an already
* open object in a next call, if the next call will see the key expired,
* while the first did not.
- * This is specificlally important in the context of scripts, where we
+ * This is specifically important in the context of scripts, where we
* pretend that time freezes. This way a key can expire only the first time
* it is accessed and not in the middle of the script execution, making
* propagation to slaves / AOF consistent. See issue #1525 for more info.