summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2024-12-31 17:55:28 -0500
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-01-02 13:12:35 +0100
commitf14cab28a50e1585eac5a3456217a03f5c335c56 (patch)
tree56865ffe34cadd09530bca92e803972e85e1b82a /django
parent989329344aabe8ef7a5e55bebfde53f0e00f42e2 (diff)
Fixed typo in django/db/models/query.py docstring.
Diffstat (limited to 'django')
-rw-r--r--django/db/models/query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/query.py b/django/db/models/query.py
index ea8cc179f3..e1f785f714 100644
--- a/django/db/models/query.py
+++ b/django/db/models/query.py
@@ -1746,7 +1746,7 @@ class QuerySet(AltersData):
Defer the loading of data for certain fields until they are accessed.
Add the set of deferred fields to any existing set of deferred fields.
The only exception to this is if None is passed in as the only
- parameter, in which case removal all deferrals.
+ parameter, in which case remove all deferrals.
"""
self._not_support_combined_queries("defer")
if self._fields is not None: