diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-25 07:30:18 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-09-25 10:30:18 -0400 |
| commit | 8c3e0eb1c16abbcded3503b4ea3473b353520f61 (patch) | |
| tree | 1536a0599e8cbae25b3079d27571593fcb59613f /django/utils | |
| parent | abeed587b119197270a885830619694b2c5ba1f1 (diff) | |
Normalized spelling of "lowercase" and "lowercased".
Diffstat (limited to 'django/utils')
| -rw-r--r-- | django/utils/text.py | 2 |
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() |
