summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/project.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index b9c495b43..63d9432f1 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -750,8 +750,8 @@ also informs Python that the directory which contains it is a *package*.
Line 6 creates an instance of a :term:`Configurator`.
Line 7 registers a static view, which will serve up the files from the
- ``mypackage:static`` :term:`asset specification` (the ``static``
- directory of the ``mypackage`` package).
+ ``myproject:static`` :term:`asset specification` (the ``static``
+ directory of the ``myproject`` package).
Line 8 adds a :term:`route` to the configuration. This route is later
used by a view in the ``views`` module.
@@ -888,7 +888,7 @@ If your project package name was ``myproject`` and you wanted to arrange all
your views in a Python subpackage within the ``myproject`` :term:`package`
named ``views`` instead of within a single ``views.py`` file, you might:
-- Create a ``views`` directory inside your ``mypackage`` package directory
+- Create a ``views`` directory inside your ``myproject`` package directory
(the same directory which holds ``views.py``).
- *Move* the existing ``views.py`` file to a file inside the new ``views``