diff options
author | Steven Shaw <steven@steshaw.org> | 2017-12-19 07:35:44 +1000 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-01-02 15:55:11 -0500 |
commit | 12f5c00543e1f3dc7109e3575fcc4a973aebdacc (patch) | |
tree | f92d9f228d9ea7c0e71f8155ca4d3c1f4afb22f8 /docs/users_guide/extending_ghc.rst | |
parent | b31c7214b7ccf31b6a78faac1a3cc5c39cdff56d (diff) | |
download | haskell-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.rst | 2 |
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, |