summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2020-01-15 05:51:25 -0800
committerSteve Piercy <web@stevepiercy.com>2020-01-15 05:51:25 -0800
commit8322a2e409c94000761b9fc69fd5914c6cab9bb7 (patch)
treef5f774b40b5d5d13ab8ec9bc82279db71f6bcdbb /docs/tutorials
parentf2c900097e709c71c893cce6492c6d8d1cdb25f2 (diff)
downloadpyramid-8322a2e409c94000761b9fc69fd5914c6cab9bb7.tar.gz
pyramid-8322a2e409c94000761b9fc69fd5914c6cab9bb7.tar.bz2
pyramid-8322a2e409c94000761b9fc69fd5914c6cab9bb7.zip
Update output of install of docutils
- Fix line number reference
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/wiki/definingviews.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 5aafd68d6..02d7bde9a 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -74,7 +74,7 @@ Success executing this command will end with a line to the console similar to th
.. code-block:: text
- Successfully installed docutils-0.15.2 tutorial
+ Successfully installed docutils-0.16 tutorial
Adding view functions in the ``views`` package
@@ -291,7 +291,7 @@ We can do this via :term:`METAL` macros and slots.
- The cookiecutter defined a macro named ``layout`` (line 1).
This macro consists of the entire template.
-- We changed the ``title`` tag to use the ``name`` attribute of a ``page`` object, or if it does not exist then the page title (lines 11-12).
+- We changed the ``title`` tag to use the ``name`` attribute of a ``page`` object, or if it does not exist then the page title (line 11).
- The cookiecutter defined a macro customization point or `slot` (line 35).
This slot is inside the macro ``layout``.
Therefore it can be replaced by content, customizing the macro.