summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Haaker <d.haaker@gmail.com>2014-03-26 10:10:54 +0100
committerDaniel Haaker <d.haaker@gmail.com>2014-03-26 10:10:54 +0100
commit92b27dc06a4a73ea4ff0649855a5a84cd30b458c (patch)
treedfae522695fb5d79b7fd0e74922b42efa384a2b2 /docs
parent26694a797b907d41dfcd71d154251decceed74f9 (diff)
downloadpyramid-92b27dc06a4a73ea4ff0649855a5a84cd30b458c.tar.gz
pyramid-92b27dc06a4a73ea4ff0649855a5a84cd30b458c.tar.bz2
pyramid-92b27dc06a4a73ea4ff0649855a5a84cd30b458c.zip
Update hello_world.rst
Modify 'Extra Credit' to reflect code example
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tutorial/hello_world.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst
index 86e1319f0..1a9ba4c9d 100644
--- a/docs/quick_tutorial/hello_world.rst
+++ b/docs/quick_tutorial/hello_world.rst
@@ -96,13 +96,13 @@ Extra Credit
.. code-block:: python
- print ('Starting up server on http://localhost:6547')
+ print('Incoming request')
...instead of:
.. code-block:: python
- print 'Starting up server on http://localhost:6547'
+ print 'Incoming request'
#. What happens if you return a string of HTML? A sequence of integers?