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/contrib/comments | |
| 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/contrib/comments')
| -rw-r--r-- | docs/ref/contrib/comments/moderation.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/comments/moderation.txt b/docs/ref/contrib/comments/moderation.txt index 796e257200..5f0badfadb 100644 --- a/docs/ref/contrib/comments/moderation.txt +++ b/docs/ref/contrib/comments/moderation.txt @@ -54,7 +54,7 @@ following model, which would represent entries in a Weblog:: Now, suppose that we want the following steps to be applied whenever a new comment is posted on an ``Entry``: -1. If the ``Entry``'s ``enable_comments`` field is ``False``, the +1. If the ``Entry``’s ``enable_comments`` field is ``False``, the comment will simply be disallowed (i.e., immediately deleted). 2. If the ``enable_comments`` field is ``True``, the comment will be |
