summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
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
parent1097af1c1edfbc52e739a0bbceb1a6e9b8c5d3b9 (diff)
downloadpyramid-3ce38a3acef836aa264a9b6d7694833257c2c6d5.tar.gz
pyramid-3ce38a3acef836aa264a9b6d7694833257c2c6d5.tar.bz2
pyramid-3ce38a3acef836aa264a9b6d7694833257c2c6d5.zip
grammar; correct title tag
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/sessions.rst2
-rw-r--r--docs/quick_tutorial/sessions/tutorial/home.pt4
2 files changed, 3 insertions, 3 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.
diff --git a/docs/quick_tutorial/sessions/tutorial/home.pt b/docs/quick_tutorial/sessions/tutorial/home.pt
index 0b27ba1d8..50342e52f 100644
--- a/docs/quick_tutorial/sessions/tutorial/home.pt
+++ b/docs/quick_tutorial/sessions/tutorial/home.pt
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
- <title>Quick Tour: ${name}</title>
+ <title>Quick Tutorial: ${name}</title>
</head>
<body>
<h1>Hi ${name}</h1>
<p>Count: ${view.counter}</p>
</body>
-</html> \ No newline at end of file
+</html>