summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-11-30 05:09:49 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-11-30 05:09:49 +0000
commit71dd90b25d26e4d85b3b05fc4167eec154fffd7d (patch)
tree029473f72eec33594df10bad1a562717b3991ab9 /docs
parent53a5fa9928a2134fe5fa4855aeddecbd71c10d23 (diff)
Edited docs/unicode.txt change from [6463] -- Americanized 'behavior'
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6766 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/unicode.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/unicode.txt b/docs/unicode.txt
index a0e2648f57..a2c4e7fbe6 100644
--- a/docs/unicode.txt
+++ b/docs/unicode.txt
@@ -136,7 +136,7 @@ for converting back and forth between Unicode and bytestrings.
* ``smart_str(s, encoding='utf-8', strings_only=False, errors='strict')``
is essentially the opposite of ``smart_unicode()``. It forces the first
argument to a bytestring. The ``strings_only`` parameter has the same
- behaviour as for ``smart_unicode()`` and ``force_unicode()``. This is
+ behavior as for ``smart_unicode()`` and ``force_unicode()``. This is
slightly different semantics from Python's builtin ``str()`` function,
but the difference is needed in a few places within Django's internals.