summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDavid Eisner <deisner@gmail.com>2014-10-08 11:46:21 -0400
committerDavid Eisner <deisner@gmail.com>2014-10-08 11:52:11 -0400
commit9095de6ac110a7d31ea76a5dbb5b65408897c75e (patch)
treefeca96997439461bee0892b8cdf0844b329e3c9d /docs
parent03b469479c6a70d89cf18b2fdc91c223c9f6197a (diff)
downloadpyramid-9095de6ac110a7d31ea76a5dbb5b65408897c75e.tar.gz
pyramid-9095de6ac110a7d31ea76a5dbb5b65408897c75e.tar.bz2
pyramid-9095de6ac110a7d31ea76a5dbb5b65408897c75e.zip
Minor edits to Templating With jinja2
* Fix grammar, order of operations in step 1. * Remove Analysis section reference to pyramid.includes in functional tests, which is no longer accurate.
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tutorial/jinja2.rst7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/quick_tutorial/jinja2.rst b/docs/quick_tutorial/jinja2.rst
index ad6da7a9e..613542349 100644
--- a/docs/quick_tutorial/jinja2.rst
+++ b/docs/quick_tutorial/jinja2.rst
@@ -20,8 +20,8 @@ Objectives
Steps
=====
-#. In this step let's start by installing the ``pyramid_jinja2``
- add-on, the copying the ``view_class`` step's directory:
+#. In this step let's start by copying the ``view_class`` step's
+ directory, and then installing the ``pyramid_jinja2`` add-on.
.. code-block:: bash
@@ -72,9 +72,6 @@ Our view code stayed largely the same. We simply changed the file
extension on the renderer. For the template, the syntax for Chameleon
and Jinja2's basic variable insertion is very similar.
-Our functional tests don't have ``development.ini`` so they needed the
-``pyramid.includes`` to be setup in the test setup.
-
Extra Credit
============