summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/hello_world.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-07-03 21:16:12 -0700
committerSteve Piercy <web@stevepiercy.com>2017-07-03 21:16:12 -0700
commit8d0cf35c060031e89482135074f8bb46c8028dc0 (patch)
treeefe83dc7565808f77b7053a4cd51cab6c70cac42 /docs/quick_tutorial/hello_world.rst
parent2d7b91b7a98c097a0a7b8987dec12410bbd2c0ca (diff)
downloadpyramid-8d0cf35c060031e89482135074f8bb46c8028dc0.tar.gz
pyramid-8d0cf35c060031e89482135074f8bb46c8028dc0.tar.bz2
pyramid-8d0cf35c060031e89482135074f8bb46c8028dc0.zip
Add a term for context manager in Quick Tutorial
Diffstat (limited to 'docs/quick_tutorial/hello_world.rst')
-rw-r--r--docs/quick_tutorial/hello_world.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst
index 2f2515fcd..94242f1f4 100644
--- a/docs/quick_tutorial/hello_world.rst
+++ b/docs/quick_tutorial/hello_world.rst
@@ -75,7 +75,7 @@ explanation:
"Start here when running from the command line", rather than when this
module is imported.
-#. *Lines 12-14*. Use Pyramid's :term:`configurator` to connect :term:`view`
+#. *Lines 12-14*. Use Pyramid's :term:`configurator` in a :term:`context manager` to connect :term:`view`
code to a particular URL :term:`route`.
#. *Lines 6-8*. Implement the view code that generates the :term:`response`.