summaryrefslogtreecommitdiff
path: root/django/apps
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/apps
parentabeed587b119197270a885830619694b2c5ba1f1 (diff)
Normalized spelling of "lowercase" and "lowercased".
Diffstat (limited to 'django/apps')
-rw-r--r--django/apps/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/apps/config.py b/django/apps/config.py
index 157fda7238..aeb47923d8 100644
--- a/django/apps/config.py
+++ b/django/apps/config.py
@@ -44,7 +44,7 @@ class AppConfig:
# None if the application doesn't have a models module.
self.models_module = None
- # Mapping of lower case model names to model classes. Initially set to
+ # Mapping of lowercase model names to model classes. Initially set to
# None to prevent accidental access before import_models() runs.
self.models = None