diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2017-02-05 20:29:37 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-02-05 20:29:38 -0500 |
commit | 563148cdf6e6560ccf842aa4e2bd6262ea463d66 (patch) | |
tree | 9767bca70f29651846f2542876cbb3b2c9cf7175 /libraries/base/GHC/RTS | |
parent | 26f5e60b7916587c093072b2b68f4260666ba992 (diff) | |
download | haskell-563148cdf6e6560ccf842aa4e2bd6262ea463d66.tar.gz |
Fix broken link of GHC.RTS.Flags
There ware broken link to GHC User's Guide.
* libraries/base/GHC/RTS/Flags.hsc
- runtime-control.html -> runtime_control.html
Reviewers: bgamari, austin, hvr
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D3084
Diffstat (limited to 'libraries/base/GHC/RTS')
-rw-r--r-- | libraries/base/GHC/RTS/Flags.hsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/RTS/Flags.hsc b/libraries/base/GHC/RTS/Flags.hsc index 5eba4860ff..46534fed96 100644 --- a/libraries/base/GHC/RTS/Flags.hsc +++ b/libraries/base/GHC/RTS/Flags.hsc @@ -3,7 +3,7 @@ -- | Accessors to GHC RTS flags. -- Descriptions of flags can be seen in --- <https://www.haskell.org/ghc/docs/latest/html/users_guide/runtime-control.html GHC User's Guide>, +-- <https://www.haskell.org/ghc/docs/latest/html/users_guide/runtime_control.html GHC User's Guide>, -- or by running RTS help message using @+RTS --help@. -- -- @since 4.8.0.0 |