Skip to content

Commit f3cf031

Browse files
authored
Comma
1 parent f168ac7 commit f3cf031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Preliminaries/what_makes_fast_hs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ 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*
225+
that each ``Counter`` holds a pointer to an ``Int`` on the heap, *not*
226226
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>`_

0 commit comments

Comments
 (0)