[1.5.x] Fixed spelling ("dependant" -> "dependent")

Dependent means reliant on.
A dependant is a person like a child or spouse.

Thanks Andrew Wilcox for the report.

Backport of 090315f5df from master
This commit is contained in:
Tim Graham 2013-11-01 21:29:39 -04:00
parent 9d23c3d03d
commit 2e881f15b8
4 changed files with 5 additions and 5 deletions

View file

@ -954,8 +954,8 @@ for a given version of a site — it's a good candidate for caching.
Server-side caching will reduce CPU load. It's easily implemented with the
:func:`~django.views.decorators.cache.cache_page` decorator. To trigger cache
invalidation when your translations change, provide a version-dependant key
prefix, as shown in the example below, or map the view at a version-dependant
invalidation when your translations change, provide a version-dependent key
prefix, as shown in the example below, or map the view at a version-dependent
URL.
.. code-block:: python