Update session doc

This commit is contained in:
Sdogruyol 2016-09-29 23:23:26 +03:00 committed by Serdar Dogruyol
parent e2c99bcfb8
commit ad9790b9d8
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ module Kemal
#
# get("/") do |env|
# env.session["abc"] = "xyz"
# uid = env.session["user_id"]?
# uid = env.session["user_id"]?.as(Int32)
# end
#
# Note that only String values are allowed.