summaryrefslogtreecommitdiff
path: root/rts/Apply.cmm
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-07-06 10:48:52 +0200
committerGabor Greif <ggreif@gmail.com>2017-07-06 10:48:52 +0200
commit99adcc8804e91161b35ff1d0e5f718d18fcaa66a (patch)
treee12b65bf767f0f3174fb2df2ceff3fc8a8d34130 /rts/Apply.cmm
parentf3979b7fbd83e85301ba2f028936fb7c50a48f42 (diff)
downloadhaskell-99adcc8804e91161b35ff1d0e5f718d18fcaa66a.tar.gz
Typos in comments [ci skip]
Diffstat (limited to 'rts/Apply.cmm')
-rw-r--r--rts/Apply.cmm2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Apply.cmm b/rts/Apply.cmm
index 36a9859aeb..64f0a9bd54 100644
--- a/rts/Apply.cmm
+++ b/rts/Apply.cmm
@@ -462,7 +462,7 @@ middle of an ST action multiple times, resulting in duplication of effects.
In short, the construction of an AP_STACK allows us to suspend a computation
which should not be duplicated. When running with lazy blackholing, we can then
enter this AP_STACK multiple times, duplicating the computation with potentially
-disasterous consequences.
+disastrous consequences.
For instance, consider the case of a simple ST program which computes a sum
using in─place mutation,