summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/hello_world.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tutorial/hello_world.rst')
-rw-r--r--docs/quick_tutorial/hello_world.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst
index 94242f1f4..161f07ac8 100644
--- a/docs/quick_tutorial/hello_world.rst
+++ b/docs/quick_tutorial/hello_world.rst
@@ -49,18 +49,18 @@ Steps
.. code-block:: bash
- $ cd ~/projects/quick_tutorial; mkdir hello_world; cd hello_world
+ cd ~/projects/quick_tutorial; mkdir hello_world; cd hello_world
#. Copy the following into ``hello_world/app.py``:
.. literalinclude:: hello_world/app.py
- :linenos:
+ :linenos:
#. Run the application:
.. code-block:: bash
- $ $VENV/bin/python app.py
+ $VENV/bin/python app.py
#. Open http://localhost:6543/ in your browser.
@@ -95,13 +95,13 @@ Extra credit
.. code-block:: python
- print('Incoming request')
+ print('Incoming request')
...instead of:
.. code-block:: python
- print 'Incoming request'
+ print 'Incoming request'
#. What happens if you return a string of HTML? A sequence of integers?