summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-10-06 20:22:28 -0700
committerSteve Piercy <web@stevepiercy.com>2015-10-06 20:22:28 -0700
commit9b0f79b58f2a924234545af4b8c4830b8b335b8f (patch)
treed636060a201e0c49210678275ab7895af8443b30
parentf598a2f329980c8eead84a73d25ceeac2937e1a6 (diff)
parentb7736b4552fb6ba2c1745503f47e947928b293b1 (diff)
downloadpyramid-9b0f79b58f2a924234545af4b8c4830b8b335b8f.tar.gz
pyramid-9b0f79b58f2a924234545af4b8c4830b8b335b8f.tar.bz2
pyramid-9b0f79b58f2a924234545af4b8c4830b8b335b8f.zip
Merge pull request #1928 from bertjwregeer/fix/docs
Small fixes to the docs
-rw-r--r--docs/narr/project.rst2
-rw-r--r--docs/tutorials/wiki2/basiclayout.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index d8312b4ea..c9e89aff4 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -1014,7 +1014,7 @@ its scaffolding. But we strongly recommend using ``pserve`` while developing
your application because many other convenience introspection commands (such as
``pviews``, ``prequest``, ``proutes``, and others) are also implemented in
terms of configuration availability of this ``.ini`` file format. It also
-configures Pyramid logging and provides the ``--reload``switch for convenient
+configures Pyramid logging and provides the ``--reload`` switch for convenient
restarting of the server when code changes.
.. _alternate_wsgi_server:
diff --git a/docs/tutorials/wiki2/basiclayout.rst b/docs/tutorials/wiki2/basiclayout.rst
index 08132e8cd..80ae4b34e 100644
--- a/docs/tutorials/wiki2/basiclayout.rst
+++ b/docs/tutorials/wiki2/basiclayout.rst
@@ -204,7 +204,7 @@ Let's examine this in detail. First, we need some imports to support later code:
Next we set up a SQLAlchemy ``DBSession`` object:
.. literalinclude:: src/basiclayout/tutorial/models.py
- :lines: 16
+ :lines: 17
:language: py
``scoped_session`` and ``sessionmaker`` are standard SQLAlchemy helpers.