We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f168ac7 commit f3cf031Copy full SHA for f3cf031
src/Preliminaries/what_makes_fast_hs.rst
@@ -222,7 +222,7 @@ of a ``Counter`` data type that tracks some domain specific integer:
222
Normally, when compiling with ``-O2`` GHC will recognize and optimize this definition.
223
224
``Int`` is a :term:`Boxed` and :term:`Lifted` type in ``Counter``, this means
225
-that each ``Counter`` holds a pointer to an ``Int`` on the heap *not*
+that each ``Counter`` holds a pointer to an ``Int`` on the heap, *not*
226
an ``Int`` directly. We can instruct GHC remove the heap indirection with the
227
`unpack
228
<https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/exts/pragmas.html?highlight=unpack#unpack-pragma>`_
0 commit comments