summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMr3h1v <15902242+Mr3h1v@users.noreply.github.com>2022-07-22 23:40:51 +0800
committerGitHub <noreply@github.com>2022-07-22 23:40:51 +0800
commit0dcce878d3b6afbf4bb1c12b72007e44f80493b8 (patch)
treeab5ad952f5f1f056fe331c418deeaeb86575d505
parent27dd1290e30937a116e538a3fedee429d021d943 (diff)
bugfix: fix error when pop multiple elements (#436)
-rw-r--r--iredis/data/command_syntax.csv4
1 files changed, 2 insertions, 2 deletions
diff --git a/iredis/data/command_syntax.csv b/iredis/data/command_syntax.csv
index 528a6d4..fbaf47b 100644
--- a/iredis/data/command_syntax.csv
+++ b/iredis/data/command_syntax.csv
@@ -104,14 +104,14 @@ list,LINDEX,command_key_position,render_bulk_string
list,LINSERT,command_key_positionchoice_pivot_value,render_int
list,LLEN,command_key,render_int
list,LPOS,command_lpos,render_list_or_string
-list,LPOP,command_key,render_bulk_string
+list,LPOP,command_key,render_list_or_string
list,LPUSH,command_key_values,render_int
list,LPUSHX,command_key_values,render_int
list,LRANGE,command_key_start_end,render_list
list,LREM,command_key_position_value,render_int
list,LSET,command_key_position_value,render_simple_string
list,LTRIM,command_key_start_end,render_simple_string
-list,RPOP,command_key,render_bulk_string
+list,RPOP,command_key,render_list_or_string
list,RPOPLPUSH,command_key_newkey,render_bulk_string
list,RPUSH,command_key_values,render_int
list,RPUSHX,command_key_value,render_int