diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-01-19 00:07:47 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-01-19 00:07:52 +0100 |
commit | aff51af1d747f88a140f435882efcd46b47b50af (patch) | |
tree | 50c0f2f0528e06eb800369d0b7aa3077932df2df /docs/users_guide/extending_ghc.rst | |
parent | 38666bda4517856eae3228c2119a97c32aa3fc40 (diff) | |
download | haskell-aff51af1d747f88a140f435882efcd46b47b50af.tar.gz |
users-guide: Begin documenting --frontend
Reviewers: austin
Subscribers: thomie, ezyang
Differential Revision: https://phabricator.haskell.org/D1793
GHC Trac Issues: #11448
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 74bba9140a..17d061ec3e 100644 --- a/docs/users_guide/extending_ghc.rst +++ b/docs/users_guide/extending_ghc.rst @@ -590,7 +590,7 @@ A frontend plugin allows you to add new major modes to GHC. You may prefer this over a traditional program which calls the GHC API, as GHC manages a lot of parsing flags and administrative nonsense which can be difficult to manage manually. To load a frontend plugin exported by ``Foo.FrontendPlugin``, -we just invoke GHC as follows: +we just invoke GHC with the :ghc-flag:`--frontend` flag as follows: .. code-block:: none |