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/intro/tutorial05.txt | |
| 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/intro/tutorial05.txt')
| -rw-r--r-- | docs/intro/tutorial05.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt index 39c3785f7c..63533d47ff 100644 --- a/docs/intro/tutorial05.txt +++ b/docs/intro/tutorial05.txt @@ -132,7 +132,7 @@ We identify a bug Fortunately, there's a little bug in the ``polls`` application for us to fix right away: the ``Poll.was_published_recently()`` method returns ``True`` if the ``Poll`` was published within the last day (which is correct) but also if -the ``Poll``'s ``pub_date`` field is in the future (which certainly isn't). +the ``Poll``’s ``pub_date`` field is in the future (which certainly isn't). You can see this in the Admin; create a poll whose date lies in the future; you'll see that the ``Poll`` change list claims it was published recently. |
