summaryrefslogtreecommitdiff
path: root/docs/narr/configuration.rst
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-15 23:37:05 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-15 23:37:05 -0700
commit9514566c4f9fce8b8d07c3a645b007062546dfae (patch)
treeb920c26a138a4033126fc74ceb25710a93b6c5f4 /docs/narr/configuration.rst
parent5182f12df56f6593a78d688e2472567b1a780416 (diff)
downloadpyramid-9514566c4f9fce8b8d07c3a645b007062546dfae.tar.gz
pyramid-9514566c4f9fce8b8d07c3a645b007062546dfae.tar.bz2
pyramid-9514566c4f9fce8b8d07c3a645b007062546dfae.zip
Add missing closing paren (prose)
Diffstat (limited to 'docs/narr/configuration.rst')
-rw-r--r--docs/narr/configuration.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/configuration.rst b/docs/narr/configuration.rst
index ef2e9bef1..6c5bc614b 100644
--- a/docs/narr/configuration.rst
+++ b/docs/narr/configuration.rst
@@ -56,7 +56,7 @@ We won't talk much about what this application does yet. Just note
that the "configuration' statements take place underneath the ``if
__name__ == '__main__':`` stanza in the form of method calls on a
:term:`Configurator` object (e.g. ``config.begin()``,
-``config.add_view(...)``, and ``config.end()``. These statements take
+``config.add_view(...)``, and ``config.end()``). These statements take
place one after the other, and are executed in order, so the full
power of Python, including conditionals, can be employed in this mode
of configuration.