diff options
| author | Abhyudai <13880786+abhiabhi94@users.noreply.github.com> | 2021-07-29 10:21:09 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-29 06:51:09 +0200 |
| commit | 85d47a58bf7dceced6a3e29a0715827b7a9d7d29 (patch) | |
| tree | a670398df3c16e9e51376323fe79b1ddd6dd789c /docs | |
| parent | 1024b5e74a7166313ad4e4975a15e90dccd3ec5f (diff) | |
Made minor edits to QuerySet.update_or_create() docs.
Diffstat (limited to 'docs')
| -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 4dafa7b3bf..333c0054c6 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2143,7 +2143,7 @@ The above example can be rewritten using ``update_or_create()`` like so:: defaults={'first_name': 'Bob'}, ) -For detailed description how names passed in ``kwargs`` are resolved see +For a detailed description of how names passed in ``kwargs`` are resolved, see :meth:`get_or_create`. As described above in :meth:`get_or_create`, this method is prone to a |
