diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-05-21 00:24:47 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-05-21 00:27:55 -0700 |
| commit | 0c78388845bd4a020b924c7689f88168531427a7 (patch) | |
| tree | c705a58a01b3e3d74aa0218981d10adae6f9471c /docs/quick_tutorial | |
| parent | 95c361cece23e4adeec2cd84598b89ba68fb9e46 (diff) | |
| download | pyramid-0c78388845bd4a020b924c7689f88168531427a7.tar.gz pyramid-0c78388845bd4a020b924c7689f88168531427a7.tar.bz2 pyramid-0c78388845bd4a020b924c7689f88168531427a7.zip | |
- correct title tag
- grammar
Diffstat (limited to 'docs/quick_tutorial')
| -rw-r--r-- | docs/quick_tutorial/templating.rst | 2 | ||||
| -rw-r--r-- | docs/quick_tutorial/templating/tutorial/home.pt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tutorial/templating.rst b/docs/quick_tutorial/templating.rst index d73067f48..cf56d2a96 100644 --- a/docs/quick_tutorial/templating.rst +++ b/docs/quick_tutorial/templating.rst @@ -112,7 +112,7 @@ Analysis Ahh, that looks better. We have a view that is focused on Python code. Our ``@view_config`` decorator specifies a :term:`renderer` that points -our template file. Our view then simply returns data which is then +to our template file. Our view then simply returns data which is then supplied to our template. Note that we used the same template for both views. diff --git a/docs/quick_tutorial/templating/tutorial/home.pt b/docs/quick_tutorial/templating/tutorial/home.pt index a0cc08e7a..fd4ef8764 100644 --- a/docs/quick_tutorial/templating/tutorial/home.pt +++ b/docs/quick_tutorial/templating/tutorial/home.pt @@ -1,9 +1,9 @@ <!DOCTYPE html> <html lang="en"> <head> - <title>Quick Tour: ${name}</title> + <title>Quick Tutorial: ${name}</title> </head> <body> <h1>Hi ${name}</h1> </body> -</html>
\ No newline at end of file +</html> |
