summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-09-25 07:30:18 -0700
committerTim Graham <timograham@gmail.com>2018-09-25 10:30:18 -0400
commit8c3e0eb1c16abbcded3503b4ea3473b353520f61 (patch)
tree1536a0599e8cbae25b3079d27571593fcb59613f /django/utils
parentabeed587b119197270a885830619694b2c5ba1f1 (diff)
Normalized spelling of "lowercase" and "lowercased".
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/text.py b/django/utils/text.py
index 0e41cac493..8e0014fd0a 100644
--- a/django/utils/text.py
+++ b/django/utils/text.py
@@ -413,7 +413,7 @@ def slugify(value, allow_unicode=False):
def camel_case_to_spaces(value):
"""
- Split CamelCase and convert to lower case. Strip surrounding whitespace.
+ Split CamelCase and convert to lowercase. Strip surrounding whitespace.
"""
return re_camel_case.sub(r' \1', value).strip().lower()