summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-02 23:24:02 -0400
committerChris McDonough <chrism@plope.com>2010-11-02 23:24:02 -0400
commita1dcd8ade56fea9056c809a2d2050e8400523af7 (patch)
tree4f9d4e4f15e0fee38908078f9293591e299b950d /docs/narr
parent008a4c4b450770c6efa8a2779822d3b6b96ef3d9 (diff)
downloadpyramid-a1dcd8ade56fea9056c809a2d2050e8400523af7.tar.gz
pyramid-a1dcd8ade56fea9056c809a2d2050e8400523af7.tar.bz2
pyramid-a1dcd8ade56fea9056c809a2d2050e8400523af7.zip
add a missing zero
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/firstapp.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst
index 8828be8e1..67dd6b8fb 100644
--- a/docs/narr/firstapp.rst
+++ b/docs/narr/firstapp.rst
@@ -52,7 +52,7 @@ installed, an HTTP server is started on TCP port 8080:
.. code-block:: bash
$ python helloworld.py
- serving on 0.0.0.0:8080 view at http://127.0.0.1:808
+ serving on 0.0.0.0:8080 view at http://127.0.0.1:8080
When port 8080 is visited by a browser on the root URL
(``/``), the server will simply serve up the text "Hello world!" When
@@ -433,7 +433,7 @@ it the same way.
.. code-block:: bash
$ python helloworld.py
- serving on 0.0.0.0:8080 view at http://127.0.0.1:808
+ serving on 0.0.0.0:8080 view at http://127.0.0.1:8080
Let's examine the differences between the code in that section and the code
above. In :ref:`helloworld_imperative_appconfig`, we had the following lines