Commit 29392da9 authored by Michal Čihař's avatar Michal Čihař

Use unicode char instead of \u escape

parent a382d0f8
...@@ -113,7 +113,7 @@ Trailing ellipsis ...@@ -113,7 +113,7 @@ Trailing ellipsis
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
Source and translation do not both end with an ellipsis. This only checks for Source and translation do not both end with an ellipsis. This only checks for
real ellipsis (`\u2026`) not for three commas (`...`). real ellipsis (``…``) not for three commas (``...``).
.. seealso:: https://en.wikipedia.org/wiki/Ellipsis .. seealso:: https://en.wikipedia.org/wiki/Ellipsis
...@@ -232,7 +232,7 @@ For example with Gettext in Python it could be: ...@@ -232,7 +232,7 @@ For example with Gettext in Python it could be:
Ellipsis Ellipsis
~~~~~~~~ ~~~~~~~~
The string uses three dots (...) instead of an ellipsis character (…). Using The string uses three dots (``...``) instead of an ellipsis character (``…``). Using
Unicode character is in most cases better approach and looks better. Unicode character is in most cases better approach and looks better.
.. seealso:: https://en.wikipedia.org/wiki/Ellipsis .. seealso:: https://en.wikipedia.org/wiki/Ellipsis
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment