diff options
author | 非法操作 <hjlarry@163.com> | 2022-05-13 11:16:15 +0800 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-13 06:56:20 +0200 |
commit | 19dc3f0f96908898fd62c62517e935331ea29628 (patch) | |
tree | eaa1694241fb946d5ef08c0fe0263e31a2ed5df9 /django/db/models/sql/query.py | |
parent | eacd4977f6a4bb038e82796ba79a2f61bae330c6 (diff) | |
download | django-19dc3f0f96908898fd62c62517e935331ea29628.tar.gz |
Fixed typo in Query.clone()'s docstring.
Diffstat (limited to 'django/db/models/sql/query.py')
-rw-r--r-- | django/db/models/sql/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 1097de4f79..f5852542b3 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -319,7 +319,7 @@ class Query(BaseExpression): def clone(self): """ Return a copy of the current Query. A lightweight alternative to - to deepcopy(). + deepcopy(). """ obj = Empty() obj.__class__ = self.__class__ |