diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-10-27 19:18:02 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-11-01 12:48:35 -0400 |
commit | b7a001132202e1ebf03dd21c6c7b4cd7a24df501 (patch) | |
tree | fd37ca58f67f2fd68dc7e145d30191c4c6ca1291 /docs | |
parent | edd175c9f9f2988e2836fc3bdc70d627f0f0c5cf (diff) | |
download | haskell-b7a001132202e1ebf03dd21c6c7b4cd7a24df501.tar.gz |
Typo: rename -fwrite-if-simplfied-core to -fwrite-if-simplified-core
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/phases.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/users_guide/phases.rst b/docs/users_guide/phases.rst index c4fa26e3d5..aa171c2055 100644 --- a/docs/users_guide/phases.rst +++ b/docs/users_guide/phases.rst @@ -641,7 +641,7 @@ Options affecting code generation useful if you want to type check over multiple runs of GHC without compiling dependencies. -.. ghc-flag:: -fwrite-if-simplfied-core +.. ghc-flag:: -fwrite-if-simplified-core :shortdesc: Write an interface file containing the simplified core of the module. :type: dynamic :category: codegen @@ -679,9 +679,9 @@ Options affecting code generation :category: codegen Generate object code and byte-code. This is useful with the flags - :ghc-flag:`-fprefer-byte-code` and :ghc-flag:`-fwrite-if-simplfied-core`. + :ghc-flag:`-fprefer-byte-code` and :ghc-flag:`-fwrite-if-simplified-core`. - This flag implies :ghc-flag:`-fwrite-if-simplfied-core`. + This flag implies :ghc-flag:`-fwrite-if-simplified-core`. :ghc-flag:`-fbyte-code` and :ghc-flag:`-fobject-code` disable this flag as they specify that GHC should *only* write object code or byte-code respectively. @@ -787,7 +787,7 @@ Options affecting code generation and object file (if that's available) to evaluate and run TH splices. This is useful with flags such as :ghc-flag:`-fbyte-code-and-object-code`, which - tells the compiler to generate byte-code, and :ghc-flag:`-fwrite-if-simplfied-core` which + tells the compiler to generate byte-code, and :ghc-flag:`-fwrite-if-simplified-core` which allows byte-code to be generated from an interface file. This flag also interacts with :ghc-flag:`-fno-code`, if this flag is enabled |