summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-05-22 02:14:00 -0700
committerSteve Piercy <web@stevepiercy.com>2015-05-22 02:14:00 -0700
commit4caf31c082d4d4577ff09d67d420d5f50ecfe042 (patch)
tree665aa87c4d27b87dc58358230e3f8339e4cc9838
parent390a2c3e31737e9d8fd770782ef7269bac76694b (diff)
downloadpyramid-4caf31c082d4d4577ff09d67d420d5f50ecfe042.tar.gz
pyramid-4caf31c082d4d4577ff09d67d420d5f50ecfe042.tar.bz2
pyramid-4caf31c082d4d4577ff09d67d420d5f50ecfe042.zip
add missing word; correct title tag
-rw-r--r--docs/quick_tutorial/routing.rst2
-rw-r--r--docs/quick_tutorial/routing/tutorial/home.pt4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tutorial/routing.rst b/docs/quick_tutorial/routing.rst
index 54dff5c39..1b79a5889 100644
--- a/docs/quick_tutorial/routing.rst
+++ b/docs/quick_tutorial/routing.rst
@@ -14,7 +14,7 @@ Writing web applications usually means sophisticated URL design. We
just saw some Pyramid machinery for requests and views. Let's look at
features that help in routing.
-Previously we saw the basics of routing URLs to views in
+Previously we saw the basics of routing URLs to views in Pyramid.
- Your project's "setup" code registers a route name to be used when
matching part of the URL
diff --git a/docs/quick_tutorial/routing/tutorial/home.pt b/docs/quick_tutorial/routing/tutorial/home.pt
index f2b991059..b68e96338 100644
--- a/docs/quick_tutorial/routing/tutorial/home.pt
+++ b/docs/quick_tutorial/routing/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>${name}</h1>
<p>First: ${first}, Last: ${last}</p>
</body>
-</html> \ No newline at end of file
+</html>