summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2020-04-14 11:15:26 +0200
committerGitHub <noreply@github.com>2020-04-14 11:15:26 +0200
commit33386bed664e0863ce118f0aea4f891da36d5037 (patch)
tree7ec8f6be68bac743e15e81331c412000e17a5283
parent5fece85491421c4cc34c8340a42b2cc5360044b0 (diff)
parent1323afed8b42db83961a559754928d051f7bc2e3 (diff)
downloadredis-33386bed664e0863ce118f0aea4f891da36d5037.tar.gz
Merge pull request #7095 from hwware/typofixacl
fix spelling in acl.c
-rw-r--r--src/acl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/acl.c b/src/acl.c
index 733988013..6847130ad 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -1783,8 +1783,8 @@ void aclCommand(client *c) {
long count = 10; /* Number of entries to emit by default. */
/* Parse the only argument that LOG may have: it could be either
- * the number of entires the user wants to display, or alternatively
- * the "RESET" command in order to flush the old entires. */
+ * the number of entries the user wants to display, or alternatively
+ * the "RESET" command in order to flush the old entries. */
if (c->argc == 3) {
if (!strcasecmp(c->argv[2]->ptr,"reset")) {
listSetFreeMethod(ACLLog,ACLFreeLogEntry);