Commit 49f4fe8c authored by Jacob Vosmaer's avatar Jacob Vosmaer

Fix copy-paste error in comment

parent 764eaedf
...@@ -4,7 +4,7 @@ module Gitlab ...@@ -4,7 +4,7 @@ module Gitlab
class Redis class Redis
class Store class Store
module Namespace module Namespace
# Redis::Store#expire in redis-store 1.1.4 does not respect namespaces; # Redis::Store#setex in redis-store 1.1.4 does not respect namespaces;
# this new method does. # this new method does.
def setex(key, expires_in, value, options=nil) def setex(key, expires_in, value, options=nil)
namespace(key) { |key| super(key, expires_in, value) } namespace(key) { |key| super(key, expires_in, value) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment