File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1041,7 +1041,7 @@ def llen(key)
1041
1041
# Prepend one or more values to a list, creating the list if it doesn't exist
1042
1042
#
1043
1043
# @param [String] key
1044
- # @param [String, Array] value string value, or array of string values to push
1044
+ # @param [String, Array<String> ] value string value, or array of string values to push
1045
1045
# @return [Fixnum] the length of the list after the push operation
1046
1046
def lpush ( key , value )
1047
1047
synchronize do |client |
@@ -1063,7 +1063,7 @@ def lpushx(key, value)
1063
1063
# Append one or more values to a list, creating the list if it doesn't exist
1064
1064
#
1065
1065
# @param [String] key
1066
- # @param [String] value
1066
+ # @param [String, Array<String> ] value string value, or array of string values to push
1067
1067
# @return [Fixnum] the length of the list after the push operation
1068
1068
def rpush ( key , value )
1069
1069
synchronize do |client |
You can’t perform that action at this time.
0 commit comments