summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/expressions.txt2
-rw-r--r--docs/ref/models/fields.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt
index 236918380e..e84a729f6e 100644
--- a/docs/ref/models/expressions.txt
+++ b/docs/ref/models/expressions.txt
@@ -327,7 +327,7 @@ The ``Func`` API is as follows:
customize the SQL as needed. For example:
.. code-block:: python
- :caption: django/db/models/functions.py
+ :caption: ``django/db/models/functions.py``
class ConcatPair(Func):
...
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 3d671a9aac..62954b1f48 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -1478,7 +1478,7 @@ Relationships defined this way on :ref:`abstract models
concrete model and are not relative to the abstract model's ``app_label``:
.. code-block:: python
- :caption: products/models.py
+ :caption: ``products/models.py``
from django.db import models
@@ -1489,7 +1489,7 @@ concrete model and are not relative to the abstract model's ``app_label``:
abstract = True
.. code-block:: python
- :caption: production/models.py
+ :caption: ``production/models.py``
from django.db import models
from products.models import AbstractCar