diff options
author | Brian Wignall <brianwignall@gmail.com> | 2021-02-05 09:03:21 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-02-06 09:30:34 -0500 |
commit | 3da472f0e78fe5f1068be0cc2b1c0762532da9f9 (patch) | |
tree | d88a147c49aa25fff13866de9b87c712213fbd3f /docs | |
parent | 9b7dcd80f16efda57e4e51e39d61b55a11c72014 (diff) | |
download | haskell-3da472f0e78fe5f1068be0cc2b1c0762532da9f9.tar.gz |
Fix typos
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/9.0.1-notes.rst | 2 | ||||
-rw-r--r-- | docs/users_guide/9.2.1-notes.rst | 4 | ||||
-rw-r--r-- | docs/users_guide/phases.rst | 2 | ||||
-rw-r--r-- | docs/users_guide/using-optimisation.rst | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/users_guide/9.0.1-notes.rst b/docs/users_guide/9.0.1-notes.rst index 4b6ae89290..46c847191a 100644 --- a/docs/users_guide/9.0.1-notes.rst +++ b/docs/users_guide/9.0.1-notes.rst @@ -40,7 +40,7 @@ Highlights GHC is now able to detect the case alt returning 3 as redundant. - Some more performance improvements in edge cases. -* Windows: Use the larg address space allocator. +* Windows: Use the large address space allocator. This improves runtime but causes increased memory usage on Windows versions older than Win 8.1/Server 2012. diff --git a/docs/users_guide/9.2.1-notes.rst b/docs/users_guide/9.2.1-notes.rst index a51875d3f4..96306e4d9c 100644 --- a/docs/users_guide/9.2.1-notes.rst +++ b/docs/users_guide/9.2.1-notes.rst @@ -98,7 +98,7 @@ Runtime system - The :rts-flag:`-h` flag has been deprecated, use either :rts-flag:`-hc` or - :rts-flag:`-hT` explicitly, as appropiate. + :rts-flag:`-hT` explicitly, as appropriate. ``ghc-prim`` library ~~~~~~~~~~~~~~~~~~~~ @@ -163,7 +163,7 @@ Runtime system ``Natural``. As a consequence, one must enable ``TypeSynonymInstances`` in order to define instances for ``Nat``. - The ``Numeric`` module recieves ``showBin`` and ``readBin`` to show and + The ``Numeric`` module receives ``showBin`` and ``readBin`` to show and read integer numbers in binary. - ``Char`` gets type-level support by analogy with strings and natural numbers. diff --git a/docs/users_guide/phases.rst b/docs/users_guide/phases.rst index 797b10e8fe..73d9777f99 100644 --- a/docs/users_guide/phases.rst +++ b/docs/users_guide/phases.rst @@ -190,7 +190,7 @@ the following flags: specified compiler will support it. This flag can be used to indicate that ``-no-pie`` is supported. It has to be passed after ``-pgmc``. - This flag is not neccessary when ``-pgmc`` is not used, since GHC + This flag is not necessary when ``-pgmc`` is not used, since GHC remembers whether the default C compiler supports ``-no-pie`` in an internal settings file. diff --git a/docs/users_guide/using-optimisation.rst b/docs/users_guide/using-optimisation.rst index ee5b1de95e..a53fa21802 100644 --- a/docs/users_guide/using-optimisation.rst +++ b/docs/users_guide/using-optimisation.rst @@ -1147,8 +1147,8 @@ by saying ``-fno-wombat``. dummy value at the call site or omitted altogether. The worker/wrapper transformation (:ghc-flag:`-fworker-wrapper`) is - reponsible for exploiting unboxing opportunities and replacing absent - arguments by dummies. For arugments that can't be unboxed, opportunities + responsible for exploiting unboxing opportunities and replacing absent + arguments by dummies. For arguments that can't be unboxed, opportunities for call-by-value and call-by-name are exploited in CorePrep when translating to STG. |