diff --git a/CHANGES b/CHANGES index 5df663ea..a1b2bdd8 100644 --- a/CHANGES +++ b/CHANGES @@ -49,7 +49,7 @@ Version 1.0 users debug when the wrong templates are loaded. - Enforce blueprint handling in the order they were registered for template loading. -- Ported testsuite to py.test. +- Ported test suite to py.test. - Deprecated ``request.json`` in favour of ``request.get_json()``. - Add "pretty" and "compressed" separators definitions in jsonify() method. Reduces JSON response size when JSONIFY_PRETTYPRINT_REGULAR=False by removing diff --git a/docs/license.rst b/docs/license.rst index 38777e66..696ee676 100644 --- a/docs/license.rst +++ b/docs/license.rst @@ -26,7 +26,7 @@ documentation. - "AUTHORS" hereby refers to all the authors listed in the :ref:`authors` section. -- The ":ref:`flask-license`" applies to all the sourcecode shipped as +- The ":ref:`flask-license`" applies to all the source code shipped as part of Flask (Flask itself as well as the examples and the unittests) as well as documentation. diff --git a/docs/patterns/fabric.rst b/docs/patterns/fabric.rst index e915103b..bdbfa634 100644 --- a/docs/patterns/fabric.rst +++ b/docs/patterns/fabric.rst @@ -32,7 +32,7 @@ hosts. These hosts can be defined either in the fabfile or on the command line. In this case we will add them to the fabfile. This is a basic first example that has the ability to upload the current -sourcecode to the server and install it into a pre-existing +source code to the server and install it into a pre-existing virtual environment:: from fabric.api import * @@ -186,7 +186,7 @@ deployment actually fun: out the latest version on the server and then install. That way you can also easily go back to older versions. - hook in testing functionality so that you can deploy to an external - server and run the testsuite. + server and run the test suite. Working with Fabric is fun and you will notice that it's quite magical to type ``fab deploy`` and see your application being deployed automatically diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 572f8133..14753b59 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -222,7 +222,7 @@ The following converters exist: Though they look rather similar, they differ in their use of the trailing slash in the URL *definition*. In the first case, the canonical URL for the `projects` endpoint has a trailing slash. In that sense, it is similar to - a folder on a file system. Accessing it without a trailing slash will cause + a folder on a filesystem. Accessing it without a trailing slash will cause Flask to redirect to the canonical URL with the trailing slash. In the second case, however, the URL is defined without a trailing slash, diff --git a/docs/tutorial/index.rst b/docs/tutorial/index.rst index beb22709..326cea9f 100644 --- a/docs/tutorial/index.rst +++ b/docs/tutorial/index.rst @@ -11,7 +11,7 @@ features everything you need to get started. We will use Flask and SQLite as database which comes out of the box with Python, so there is nothing else you need. -If you want the full sourcecode in advance or for comparison, check out +If you want the full source code in advance or for comparison, check out the `example source`_. .. _example source: diff --git a/docs/upgrading.rst b/docs/upgrading.rst index fa32efb5..019019d0 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -96,7 +96,7 @@ as `ValueError` you will need to change this. Due to a bug in the test client Flask 0.7 did not trigger teardown handlers when the test client was used in a with statement. This was -since fixed but might require some changes in your testsuites if you +since fixed but might require some changes in your test suites if you relied on this behavior. Version 0.7 diff --git a/examples/blueprintexample/simple_page/templates/pages/layout.html b/examples/blueprintexample/simple_page/templates/pages/layout.html index 5eaa8fc6..f312d44b 100644 --- a/examples/blueprintexample/simple_page/templates/pages/layout.html +++ b/examples/blueprintexample/simple_page/templates/pages/layout.html @@ -4,7 +4,7 @@

This is blueprint example

A simple page blueprint is registered under / and /pages - you can access it using this urls: + you can access it using this URLs: