Skip to content

Commit f168ac7

Browse files
authored
Fix typo in what_makes_fast_hs.rst
1 parent c81c5e9 commit f168ac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Preliminaries/what_makes_fast_hs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ of a ``Counter`` data type that tracks some domain specific integer:
222222
Normally, when compiling with ``-O2`` GHC will recognize and optimize this definition.
223223

224224
``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* a pointer
226-
to an ``Int`` directly. We can instruct GHC remove the heap indirection with the
225+
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
227227
`unpack
228228
<https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/exts/pragmas.html?highlight=unpack#unpack-pragma>`_
229229
pragma and a bang pattern:

0 commit comments

Comments
 (0)