diff options
| author | Dominic Rodger <dominicrodger+github@gmail.com> | 2013-08-05 17:23:26 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-06 07:13:17 -0400 |
| commit | c33d1ca1d98003de29cdecb6080b52c5c52139bd (patch) | |
| tree | 659adb65682a8fc81a9345ddfc6872f1497bcd3a /docs/ref/models | |
| parent | 0b771fcf2923cef1b0d759fda79907c39ad733b4 (diff) | |
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
">‘" in the generated HTML.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/options.txt | 2 | ||||
| -rw-r--r-- | docs/ref/models/querysets.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt index 41baa8c106..7d751a53fe 100644 --- a/docs/ref/models/options.txt +++ b/docs/ref/models/options.txt @@ -90,7 +90,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. diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 570682be04..0f08022179 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -1924,7 +1924,7 @@ as_manager .. versionadded:: 1.7 Class method that returns an instance of :class:`~django.db.models.Manager` -with a copy of the ``QuerySet``'s methods. See +with a copy of the ``QuerySet``’s methods. See :ref:`create-manager-with-queryset-methods` for more details. .. _field-lookups: |
