summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodwillcoding <goodwillcoding@webhippo.net>2014-04-20 10:05:52 -0700
committergoodwillcoding <goodwillcoding@webhippo.net>2014-04-20 10:05:52 -0700
commit8c4f2514d73ec2887ea142081238878ee5a2429d (patch)
tree0a0290ba087433ebdca6e0257036937e0ea5bafe
parent510715d0a541a2d7361d505e034f1a4ce6115492 (diff)
parent872796d2c1743430ab04364d05657b46133fa230 (diff)
downloadpyramid-8c4f2514d73ec2887ea142081238878ee5a2429d.tar.gz
pyramid-8c4f2514d73ec2887ea142081238878ee5a2429d.tar.bz2
pyramid-8c4f2514d73ec2887ea142081238878ee5a2429d.zip
Merge branch 'master' of github.com:Pylons/pyramid into scaffold_version
-rw-r--r--HACKING.txt2
-rw-r--r--docs/quick_tutorial/jinja2.rst6
-rw-r--r--docs/quick_tutorial/more_view_classes.rst2
3 files changed, 5 insertions, 5 deletions
diff --git a/HACKING.txt b/HACKING.txt
index 8e2c049c2..1386be3af 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -149,7 +149,7 @@ Coding Style
------------
- PEP8 compliance. Whitespace rules are relaxed: not necessary to put
- 2 newlines between classes. But 80-column lines, in particular, are
+ 2 newlines between classes. But 79-column lines, in particular, are
mandatory. See
http://docs.pylonsproject.org/en/latest/community/codestyle.html for more
information.
diff --git a/docs/quick_tutorial/jinja2.rst b/docs/quick_tutorial/jinja2.rst
index 44d9f635b..2f1e295dd 100644
--- a/docs/quick_tutorial/jinja2.rst
+++ b/docs/quick_tutorial/jinja2.rst
@@ -88,9 +88,9 @@ Extra Credit
dependency manually. What is another way we could have made the
association?
-#. We used ``development.ini`` to get the :term:`configurator` to
- load ``pyramid_jinja2``'s configuration. What is another way could
- include it into the config?
+#. We used ``config.include`` which is an imperative configuration to get the
+ :term:`Configurator` to load ``pyramid_jinja2``'s configuration.
+ What is another way could include it into the config?
.. seealso:: `Jinja2 homepage <http://jinja.pocoo.org/>`_,
and
diff --git a/docs/quick_tutorial/more_view_classes.rst b/docs/quick_tutorial/more_view_classes.rst
index 1e5603554..9cc4cc520 100644
--- a/docs/quick_tutorial/more_view_classes.rst
+++ b/docs/quick_tutorial/more_view_classes.rst
@@ -34,7 +34,7 @@ that determine which view is matched to a request, based on factors
such as the request method, the form parameters, etc. These predicates
provide many axes of flexibility.
-The following shows a simple example with four operations operations:
+The following shows a simple example with four operations:
view a home page which leads to a form, save a change,
and press the delete button.