Skip to content

Commit df07a4c

Browse files
authored
Merge pull request #822 from jrmhaig/remove_outdated_comments
Remove old (and inaccurate) documetation
2 parents 213ed1f + fa17c6a commit df07a4c

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

lib/redis.rb

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2977,24 +2977,6 @@ def xdel(key, *ids)
29772977
synchronize { |client| client.call(args) }
29782978
end
29792979

2980-
# Fetches entries of the stream.
2981-
#
2982-
# @example Without options
2983-
# redis.xrange('mystream')
2984-
# @example With first entry id option
2985-
# redis.xrange('mystream', first: '0-1')
2986-
# @example With first and last entry id options
2987-
# redis.xrange('mystream', first: '0-1', last: '0-3')
2988-
# @example With count options
2989-
# redis.xrange('mystream', count: 10)
2990-
#
2991-
# @param key [String] the stream key
2992-
# @param start [String] first entry id of range, default value is `+`
2993-
# @param end [String] last entry id of range, default value is `-`
2994-
# @param count [Integer] the number of entries as limit
2995-
#
2996-
# @return [Hash{String => Hash}] the entries
2997-
29982980
# Fetches entries of the stream in ascending order.
29992981
#
30002982
# @example Without options

0 commit comments

Comments
 (0)