diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-06-27 12:54:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-27 12:54:11 +0200 |
| commit | c4a09499aa760c92969083b4639703b5b0a562fb (patch) | |
| tree | 53ff0f573f4f38c24d72a448645ec5d5e8b7d2a1 /docs/ref | |
| parent | 5e98959d9242c57a55c65847758781f82d386fa4 (diff) | |
Fixed typo in docs/ref/models/querysets.txt.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/models/querysets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index cf3cb5c415..a754953264 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -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(): |
