We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 947297c commit 61fa50dCopy full SHA for 61fa50d
README.md
@@ -41,7 +41,7 @@ Let's start with an example that shows the sessions API in a nutshell:
41
session.Values["foo"] = "bar"
42
session.Values[42] = 43
43
// Save it before we write to the response/return from the handler.
44
- err = session.Save(r, w)
+ err := session.Save(r, w)
45
if err != nil {
46
http.Error(w, err.Error(), http.StatusInternalServerError)
47
return
0 commit comments