summaryrefslogtreecommitdiff
path: root/doc.go
diff options
context:
space:
mode:
authorMatt Silverlock <matt@eatsleeprepeat.net>2015-08-06 10:39:54 +0300
committerMatt Silverlock <matt@eatsleeprepeat.net>2015-08-06 10:39:54 +0300
commit460e18584b819b2ffc92706c71e9c4791aba65ea (patch)
treebf053ec315d74f6a457451b51e3eb65e7fed52bc /doc.go
parent286213d1c4d3c5f7ca906279577b126e58fb933c (diff)
Improved docs re: calling Save before writing/returning.
Diffstat (limited to 'doc.go')
-rw-r--r--doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc.go b/doc.go
index 7f8be22..7c09f8b 100644
--- a/doc.go
+++ b/doc.go
@@ -35,7 +35,7 @@ Let's start with an example that shows the sessions API in a nutshell:
// Set some session values.
session.Values["foo"] = "bar"
session.Values[42] = 43
- // Save it.
+ // Save it before we write to the response/return from the handler.
session.Save(r, w)
}