summaryrefslogtreecommitdiff
path: root/docs/users_guide/extending_ghc.rst
diff options
context:
space:
mode:
authorSteven Shaw <steven@steshaw.org>2017-12-19 07:35:44 +1000
committerBen Gamari <ben@smart-cactus.org>2018-01-02 15:55:11 -0500
commit12f5c00543e1f3dc7109e3575fcc4a973aebdacc (patch)
treef92d9f228d9ea7c0e71f8155ca4d3c1f4afb22f8 /docs/users_guide/extending_ghc.rst
parentb31c7214b7ccf31b6a78faac1a3cc5c39cdff56d (diff)
downloadhaskell-12f5c00543e1f3dc7109e3575fcc4a973aebdacc.tar.gz
Prevent "C--" translating to "C–" in the User's Guide.
i.e. escape "--" so that it doesn't translate to an "en dash".
Diffstat (limited to 'docs/users_guide/extending_ghc.rst')
-rw-r--r--docs/users_guide/extending_ghc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/extending_ghc.rst b/docs/users_guide/extending_ghc.rst
index 8af5989022..e49effbd29 100644
--- a/docs/users_guide/extending_ghc.rst
+++ b/docs/users_guide/extending_ghc.rst
@@ -179,7 +179,7 @@ GHC's intermediate language, Core. Plugins are suitable for experimental
analysis or optimization, and require no changes to GHC's source code to
use.
-Plugins cannot optimize/inspect C--, nor can they implement things like
+Plugins cannot optimize/inspect C-\\-, nor can they implement things like
parser/front-end modifications like GCC, apart from limited changes to
the constraint solver. If you feel strongly that any of these
restrictions are too onerous,