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 @@ -1047,7 +1047,7 @@ def llen(key)
1047
1047
# Prepend one or more values to a list, creating the list if it doesn't exist
1048
1048
#
1049
1049
# @param [String] key
1050
- # @param [String, Array] value string value, or array of string values to push
1050
+ # @param [String, Array<String> ] value string value, or array of string values to push
1051
1051
# @return [Fixnum] the length of the list after the push operation
1052
1052
def lpush ( key , value )
1053
1053
synchronize do |client |
@@ -1069,7 +1069,7 @@ def lpushx(key, value)
1069
1069
# Append one or more values to a list, creating the list if it doesn't exist
1070
1070
#
1071
1071
# @param [String] key
1072
- # @param [String] value
1072
+ # @param [String, Array<String> ] value string value, or array of string values to push
1073
1073
# @return [Fixnum] the length of the list after the push operation
1074
1074
def rpush ( key , value )
1075
1075
synchronize do |client |
You can’t perform that action at this time.
0 commit comments