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

@ -153,7 +153,7 @@ explanation of the little bit of code above:
2. ``$('selector')`` selects an element and lets you operate on it.
3. ``element.bind('event', func)`` specifies a function that should run
when the user clicked on the element. If that function returns
`false`, the default behaviour will not kick in (in this case, navigate
`false`, the default behavior will not kick in (in this case, navigate
to the `#` URL).
4. ``$.getJSON(url, data, func)`` sends a `GET` request to `url` and will
send the contents of the `data` object as query parameters. Once the

View file

@ -17,7 +17,7 @@ here:
Declarative
-----------
The default behaviour of MongoKit is the declarative one that is based on
The default behavior of MongoKit is the declarative one that is based on
common ideas from Django or the SQLAlchemy declarative extension.
Here an example `app.py` module for your application::