summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2019-05-10 12:28:12 +0200
committerGitHub <noreply@github.com>2019-05-10 12:28:12 +0200
commit6b490e33c438fa84d1baacd2315b040cbd6a3d7f (patch)
tree962b15a3bcf7baba325ce05e714c8d6b5f5e80b0
parent891f4a38f66f78502ee189e76c8a222d77855bad (diff)
parentd9d3d3065ba3f6fc941fc6886da8392193d0cb41 (diff)
downloadredis-6b490e33c438fa84d1baacd2315b040cbd6a3d7f.tar.gz
Merge pull request #6081 from Happy4Code/mod_comments
change the comments there may have a mis type
-rw-r--r--src/t_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/t_list.c b/src/t_list.c
index 45d2e3317..54e4959b9 100644
--- a/src/t_list.c
+++ b/src/t_list.c
@@ -617,7 +617,7 @@ void rpoplpushCommand(client *c) {
* the AOF and replication channel.
*
* The argument 'where' is LIST_TAIL or LIST_HEAD, and indicates if the
- * 'value' element was popped fron the head (BLPOP) or tail (BRPOP) so that
+ * 'value' element was popped from the head (BLPOP) or tail (BRPOP) so that
* we can propagate the command properly.
*
* The function returns C_OK if we are able to serve the client, otherwise