Skip to content

Commit 61fa50d

Browse files
authored
Fix typo in README example (#223)
1 parent 947297c commit 61fa50d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Let's start with an example that shows the sessions API in a nutshell:
4141
session.Values["foo"] = "bar"
4242
session.Values[42] = 43
4343
// Save it before we write to the response/return from the handler.
44-
err = session.Save(r, w)
44+
err := session.Save(r, w)
4545
if err != nil {
4646
http.Error(w, err.Error(), http.StatusInternalServerError)
4747
return

0 commit comments

Comments
 (0)