aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 34a8c11..9f2a2ac 100644
--- a/README.md
+++ b/README.md
@@ -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)
}
```