summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorDominic Rodger <dominicrodger+github@gmail.com>2013-08-05 17:23:26 +0100
committerBaptiste Mispelon <bmispelon@gmail.com>2013-11-18 16:03:00 +0100
commita9c50fccf295d3ff8915588cd6442f1c70f1af9a (patch)
tree2b5a712b68e4b97d2edca6163b844087d42775f1 /docs/ref/models
parent2b03d53438e7d54f754c58d8f148254a7a73ef5c (diff)
[1.6.x] Fixed #20852 - Fixed incorrectly generated left quotes in docs.
Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">&#8216;" in the generated HTML. Backport of c33d1ca1d98003de29cdecb6080b52c5c52139bd from master.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index fd78638898..6b9ed4aef2 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -97,7 +97,7 @@ Django quotes column and table names behind the scenes.
The name of an orderable field in the model, typically a :class:`DateField`,
:class:`DateTimeField`, or :class:`IntegerField`. This specifies the default
- field to use in your model :class:`Manager`'s
+ field to use in your model :class:`Manager`’s
:meth:`~django.db.models.query.QuerySet.latest` and
:meth:`~django.db.models.query.QuerySet.earliest` methods.