summaryrefslogtreecommitdiff
path: root/docs/tutorials/bfgwiki2
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/bfgwiki2')
-rw-r--r--docs/tutorials/bfgwiki2/basiclayout.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/bfgwiki2/basiclayout.rst b/docs/tutorials/bfgwiki2/basiclayout.rst
index 7cf8274c8..98e8bb183 100644
--- a/docs/tutorials/bfgwiki2/basiclayout.rst
+++ b/docs/tutorials/bfgwiki2/basiclayout.rst
@@ -122,10 +122,10 @@ and its ``app`` function:
#. Line *26*. We use the ``repoze.bfg.router.make_app`` to return a
:term:`WSGI` application. The ``make_app`` function's first
- parameter is the "root factory". Since this is a URL dispatch
- application, the root factory is ``None`` (we don't do any
- :term:`traversal` in this app. The second argument is the
- *package* representing our application, and the third argument,
+ parameter is the "root factory", which is used by the BFG
+ :term:`traversal` mechanism. Since this is a URL dispatch
+ application, the root factory is ``None``. The second argument is
+ the *package* representing our application, and the third argument,
``options`` is passed as a keyword argument. It contains a
dictionary of options parsed by PasteDeploy.