Use American English for "behavior" in docs.

Prompted by plaes on #pocoo, mitsuhiko confirmed to use American English.
This commit is contained in:
Ron DuPlain 2012-04-19 11:51:38 -04:00
parent 10c34e6652
commit a3cb2a3382
10 changed files with 18 additions and 18 deletions

View file

@ -40,7 +40,7 @@ that it works with multiple Flask application instances at once. This is
a requirement because many people will use patterns like the
:ref:`app-factories` pattern to create their application as needed to aid
unittests and to support multiple configurations. Because of that it is
crucial that your application supports that kind of behaviour.
crucial that your application supports that kind of behavior.
Most importantly the extension must be shipped with a `setup.py` file and
registered on PyPI. Also the development checkout link should work so
@ -145,7 +145,7 @@ initialization functions:
classes:
Classes work mostly like initialization functions but can later be
used to further change the behaviour. For an example look at how the
used to further change the behavior. For an example look at how the
`OAuth extension`_ works: there is an `OAuth` object that provides
some helper functions like `OAuth.remote_app` to create a reference to
a remote application that uses OAuth.