summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/hello_world.rst
diff options
context:
space:
mode:
authorPaul Everitt <paul@agendaless.com>2013-09-13 17:09:35 -0400
committerPaul Everitt <paul@agendaless.com>2013-09-13 17:09:35 -0400
commit4042c772c8043ac96a22db439a736fec9ea2aafa (patch)
tree88abca8bdea3781975822b716d7091b607fd1566 /docs/quick_tutorial/hello_world.rst
parentb1b92284f496800a4dfd2cea72cb9be07ba8661c (diff)
downloadpyramid-4042c772c8043ac96a22db439a736fec9ea2aafa.tar.gz
pyramid-4042c772c8043ac96a22db439a736fec9ea2aafa.tar.bz2
pyramid-4042c772c8043ac96a22db439a736fec9ea2aafa.zip
All the references re-wired.
Diffstat (limited to 'docs/quick_tutorial/hello_world.rst')
-rw-r--r--docs/quick_tutorial/hello_world.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst
index e44ef616d..e3ad820ac 100644
--- a/docs/quick_tutorial/hello_world.rst
+++ b/docs/quick_tutorial/hello_world.rst
@@ -70,19 +70,19 @@ explanation:
#. *Line 11*. The ``if __name__ == '__main__':`` is Python's way of
saying "Start here when running from the command line".
-#. *Lines 12-14*. Use Pyramid's :term:`pyramid:configurator` to connect
- :term:`pyramid:view` code to a particular URL
- :term:`pyramid:route`.
+#. *Lines 12-14*. Use Pyramid's :term:`configurator` to connect
+ :term:`view` code to a particular URL
+ :term:`route`.
#. *Lines 6-7*. Implement the view code that generates the
- :term:`pyramid:response`.
+ :term:`response`.
-#. *Lines 15-17*. Publish a :term:`pyramid:WSGI` app using an HTTP
+#. *Lines 15-17*. Publish a :term:`WSGI` app using an HTTP
server.
-As shown in this example, the :term:`pyramid:configurator` plays a
+As shown in this example, the :term:`configurator` plays a
central role in Pyramid development. Building an application from
-loosely-coupled parts via :ref:`pyramid:configuration_narr` is a
+loosely-coupled parts via :ref:`configuration_narr` is a
central idea in Pyramid, one that we will revisit regularly in this
*Quick Tour*.