From acc6211eb1ab55d8ea71f498b10cbd71da5cb13f Mon Sep 17 00:00:00 2001 From: Edouard Date: Thu, 25 Sep 2025 13:54:27 +0200 Subject: [PATCH] Fix options name in example README.md It seems that there is a typo in the option name `expire_in`, should be `expire_after` ? --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35cdbcf..d652864 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ use Rack::Session::Redis # Alternatively you can specify options to use: use Rack::Session::Redis, :redis_server => "redis://redis:6379/0", - :expires_in => 3600 # Seconds. If you are using ActiveSupport you can use 1.hour + :expire_after => 3600 # Seconds. If you are using ActiveSupport you can use 1.hour ``` ## Development