1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

minor comment updates for sessions package

Former-commit-id: 6f73c5d83861a1f61acda07e7f78cb882320dc8c
This commit is contained in:
Gerasimos (Makis) Maropoulos
2017-12-24 19:43:31 +02:00
parent 042603c311
commit 4ab889da5f
3 changed files with 4 additions and 4 deletions

View File

@@ -369,7 +369,7 @@ func (s *Session) set(key string, value interface{}, immutable bool) {
syncDatabases(s.provider.databases, p)
}
// Set fills the session with an entry"value", based on its "key".
// Set fills the session with an entry "value", based on its "key".
func (s *Session) Set(key string, value interface{}) {
s.set(key, value, false)
}