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

View file

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