summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/sessions.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-05-22 13:19:15 -0700
committerSteve Piercy <web@stevepiercy.com>2015-05-22 13:19:15 -0700
commit3ce38a3acef836aa264a9b6d7694833257c2c6d5 (patch)
tree7987e880b5ab7a2116dc22c11cd706ea3f2c8819 /docs/quick_tutorial/sessions.rst
parent1097af1c1edfbc52e739a0bbceb1a6e9b8c5d3b9 (diff)
downloadpyramid-3ce38a3acef836aa264a9b6d7694833257c2c6d5.tar.gz
pyramid-3ce38a3acef836aa264a9b6d7694833257c2c6d5.tar.bz2
pyramid-3ce38a3acef836aa264a9b6d7694833257c2c6d5.zip
grammar; correct title tag
Diffstat (limited to 'docs/quick_tutorial/sessions.rst')
-rw-r--r--docs/quick_tutorial/sessions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tutorial/sessions.rst b/docs/quick_tutorial/sessions.rst
index b4887beb8..f97405500 100644
--- a/docs/quick_tutorial/sessions.rst
+++ b/docs/quick_tutorial/sessions.rst
@@ -89,7 +89,7 @@ when you add an item using a form ``POST``, the site usually issues a
second HTTP Redirect web request to view the new item. You might want a
message to appear after that second web request saying "Your item was
added." You can't just return it in the web response for the POST,
-as it will be tossed out during the second web requests.
+as it will be tossed out during the second web request.
Flash messages are a technique where messages can be stored between
requests, using sessions, then removed when they finally get displayed.