summaryrefslogtreecommitdiff
path: root/docs/quick_tour.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tour.rst')
-rw-r--r--docs/quick_tour.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst
index 471820ef6..a428a77c3 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -95,7 +95,7 @@ explanation:
As shown in this example, the :term:`configurator` plays a central role in
Pyramid development. Building an application from loosely-coupled parts via
:doc:`../narr/configuration` is a central idea in Pyramid, one that we will
-revisit regurlarly in this *Quick Tour*.
+revisit regularly in this *Quick Tour*.
.. seealso:: See also:
:ref:`Quick Tutorial Hello World <qtut_hello_world>`,
@@ -337,7 +337,7 @@ passed the view response through the ``pyramid_jinja2`` renderer.
.. seealso:: See also:
:ref:`Quick Tutorial Jinja2 <qtut_jinja2>`, `Jinja2 homepage
- <http://jinja.pocoo.org/>`_, and :ref:`pyramid_jinja2 Overview
+ <https://palletsprojects.com/p/jinja/>`_, and :ref:`pyramid_jinja2 Overview
<jinja2:overview>`.
@@ -823,7 +823,7 @@ Now make a "factory" and pass it to the :term:`configurator`'s
:emphasize-lines: 2-3
Pyramid's :term:`request` object now has a ``session`` attribute that we can
-use in our view code in ``views.py``:
+use in our view code in ``views/default.py``:
.. literalinclude:: quick_tour/sessions/hello_world/views/default.py
:language: python