1
0
mirror of https://github.com/django/django.git synced 2025-03-31 11:37:06 +00:00

Fixed typo in docs/ref/models/querysets.txt.

This commit is contained in:
Mariusz Felisiak 2023-06-27 12:54:11 +02:00 committed by GitHub
parent 5e98959d92
commit c4a09499aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ You can evaluate a ``QuerySet`` in the following ways:
Note: Don't use this if all you want to do is determine if at least one
result exists. It's more efficient to use :meth:`~QuerySet.exists`.
* **Asynchronous iteration.**. A ``QuerySet`` can also be iterated over using
* **Asynchronous iteration.** A ``QuerySet`` can also be iterated over using
``async for``::
async for e in Entry.objects.all():