summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-03-17 11:10:03 +0100
committerGitHub <noreply@github.com>2022-03-17 11:10:03 +0100
commit39ae8d740e30c18e46873cf82aff76588f1974c7 (patch)
treeb5c2670dd7b321face5deb15def2258844a90e97 /docs/ref
parentba298a32b30eb270ea0bf4f8fc208223d0b40bcd (diff)
Added missing backticks to function names.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt4
-rw-r--r--docs/ref/utils.txt3
2 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 8311b63f7e..94614aad72 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1618,8 +1618,8 @@ one, doing so will result in an error.
the full set of fields for the model will be significant.
Even if you think you are in the advanced use-case situation, **only use
- defer() when you cannot, at queryset load time, determine if you will need
- the extra fields or not**. If you are frequently loading and using a
+ ``defer()`` when you cannot, at queryset load time, determine if you will
+ need the extra fields or not**. If you are frequently loading and using a
particular subset of your data, the best choice you can make is to
normalize your models and put the non-loaded data into a separate model
(and database table). If the columns *must* stay in the one table for some
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index 39c8e341ad..8c12294cd6 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -332,7 +332,8 @@ https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004
.. class:: SyndicationFeed
- Base class for all syndication feeds. Subclasses should provide write().
+ Base class for all syndication feeds. Subclasses should provide
+ ``write()``.
.. method:: __init__(title, link, description, language=None, author_email=None, author_name=None, author_link=None, subtitle=None, categories=None, feed_url=None, feed_copyright=None, feed_guid=None, ttl=None, **kwargs)