summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/wiki/definingviews.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index c051d6db7..2c016b373 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -7,9 +7,10 @@ Conventionally, :term:`view callable` objects are defined within a
automagically special about the filename ``views.py``. Files implementing
views often have ``view`` in their filenames (or may live in a Python
subpackage of your application package named ``views``), but this is only by
-convention. However, a project may have many views throughout its codebase
-in arbitrarily-named files. In this application, we'll be continuing to use
-the ``views.py`` module, because there's no reason to break convention.
+convention. A project may have many views throughout its codebase in
+arbitrarily-named files. In this application, however, we'll be continuing
+to use the ``views.py`` module, because there's no reason to break
+convention.
A :term:`view callable` in a :app:`Pyramid` application is typically a simple
Python function that accepts a single parameter: :term:`request`. A view