diff options
author | George Thomas <georgefsthomas@gmail.com> | 2022-01-04 13:39:21 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-01-04 19:56:51 -0500 |
commit | 1de94daaf3d9bd03b1a641cc28678de224662738 (patch) | |
tree | c63a069a953cf1c04f5d60656107409cf9d04905 /libraries | |
parent | 5111028ee0910305d94671397b8ccc5b60ed296b (diff) | |
download | haskell-1de94daaf3d9bd03b1a641cc28678de224662738.tar.gz |
Fix Haddock parse error in GHC.Exts.Heap.FFIClosures.hs
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/ghc-heap/GHC/Exts/Heap/FFIClosures.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/ghc-heap/GHC/Exts/Heap/FFIClosures.hs b/libraries/ghc-heap/GHC/Exts/Heap/FFIClosures.hs index 14004b0b1f..66a5e006e3 100644 --- a/libraries/ghc-heap/GHC/Exts/Heap/FFIClosures.hs +++ b/libraries/ghc-heap/GHC/Exts/Heap/FFIClosures.hs @@ -29,12 +29,12 @@ module GHC.Exts.Heap.FFIClosures (module Reexport) where -- -- # Future Work -- --- * Duplication of the code in the .hsc files could be reduced simply by +-- - Duplication of the code in the .hsc files could be reduced simply by -- placing the code in a single .hsc.in file and `#include`ing it from each -- .hsc file. The .hsc files would only be responsible for setting the correct -- cpp defines. This currently doesn't work as hadrian doesn't know to copy -- the .hsc.in file to the build directory. --- * The correct solution would be for the build system to run `hsc2hs` with the +-- - The correct solution would be for the build system to run `hsc2hs` with the -- correct cpp defines once per RTS flavour. -- |