diff options
| author | Doug Latornell <djl@douglatornell.ca> | 2012-03-17 10:12:34 -0700 |
|---|---|---|
| committer | Doug Latornell <djl@douglatornell.ca> | 2012-03-17 10:12:34 -0700 |
| commit | ef501bb1618e12ec9f0a57ba5cf873616f7c440a (patch) | |
| tree | e50bfa17b22a9418f4f6d0435c3ba3053a7f7ecc | |
| parent | b3e608bac815a7d3fc639d78ec38edc5f97df859 (diff) | |
| download | pyramid-ef501bb1618e12ec9f0a57ba5cf873616f7c440a.tar.gz pyramid-ef501bb1618e12ec9f0a57ba5cf873616f7c440a.tar.bz2 pyramid-ef501bb1618e12ec9f0a57ba5cf873616f7c440a.zip | |
Fix typos.
| -rw-r--r-- | docs/tutorials/wiki2/authorization.rst | 10 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/tests.rst | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/docs/tutorials/wiki2/authorization.rst b/docs/tutorials/wiki2/authorization.rst index 338ec54be..c695c7da4 100644 --- a/docs/tutorials/wiki2/authorization.rst +++ b/docs/tutorials/wiki2/authorization.rst @@ -64,10 +64,12 @@ to a context is interpreted specially by :app:`Pyramid` as an access control list during view callable execution. See :ref:`assigning_acls` for more information about what an :term:`ACL` represents. -.. note:: Although we don't use the functionality here, the ``factory`` used - to create route contexts may differ per-route as opposed to globally. See - the ``factory`` argument to - :meth:`pyramid.config.Configurator.add_route` for more info. +.. note:: + + Although we don't use the functionality here, the ``factory`` used + to create route contexts may differ per-route as opposed to globally. See + the ``factory`` argument to + :meth:`pyramid.config.Configurator.add_route` for more info. We'll pass the ``RootFactory`` we created in the step above in as the ``root_factory`` argument to a :term:`Configurator`. diff --git a/docs/tutorials/wiki2/tests.rst b/docs/tutorials/wiki2/tests.rst index f42eb0abe..f8dbb0f18 100644 --- a/docs/tutorials/wiki2/tests.rst +++ b/docs/tutorials/wiki2/tests.rst @@ -53,7 +53,7 @@ Change the ``requires`` list in ``setup.py`` to include ``WebTest``. :linenos: :language: python :lines: 9-20 - :emphasize-lines: 19 + :emphasize-lines: 10 After we've added a dependency on WebTest in ``setup.py``, we need to rerun ``setup.py develop`` to get WebTest installed into our virtualenv. Assuming |
