summaryrefslogtreecommitdiff
path: root/django/apps
diff options
context:
space:
mode:
Diffstat (limited to 'django/apps')
-rw-r--r--django/apps/registry.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/apps/registry.py b/django/apps/registry.py
index c5ba3a307d..4abf828ca1 100644
--- a/django/apps/registry.py
+++ b/django/apps/registry.py
@@ -18,7 +18,7 @@ class Apps:
"""
def __init__(self, installed_apps=()):
- # installed_apps is set to None when creating the master registry
+ # installed_apps is set to None when creating the main registry
# because it cannot be populated at that point. Other registries must
# provide a list of installed apps and are populated immediately.
if installed_apps is None and hasattr(sys.modules[__name__], "apps"):
@@ -54,7 +54,7 @@ class Apps:
# `lazy_model_operation()` and `do_pending_operations()` methods.
self._pending_operations = defaultdict(list)
- # Populate apps and models, unless it's the master registry.
+ # Populate apps and models, unless it's the main registry.
if installed_apps is not None:
self.populate(installed_apps)