diff options
| author | Simon Marlow <marlowsd@gmail.com> | 2010-01-30 09:46:28 +0000 | 
|---|---|---|
| committer | Simon Marlow <marlowsd@gmail.com> | 2010-01-30 09:46:28 +0000 | 
| commit | 2b73532368e5e65128fda8528ecd078068cf3718 (patch) | |
| tree | 689df065cbc9a8f8942edaf2c0b0f5da849b9e9e /rts/RtsAPI.c | |
| parent | 13c66820c802b295ed153a5ce9ca1492a8c8ac51 (diff) | |
| download | haskell-2b73532368e5e65128fda8528ecd078068cf3718.tar.gz | |
Fix typo in error message (#3848)
Diffstat (limited to 'rts/RtsAPI.c')
| -rw-r--r-- | rts/RtsAPI.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/rts/RtsAPI.c b/rts/RtsAPI.c index c4babca4e8..6e6621841e 100644 --- a/rts/RtsAPI.c +++ b/rts/RtsAPI.c @@ -541,7 +541,7 @@ rts_lock (void)      if (running_finalizers) {          errorBelch("error: a C finalizer called back into Haskell.\n"                     "   This was previously allowed, but is disallowed in GHC 6.10.2 and later.\n" -                   "   To create finalizers that may call back into Haskll, use\n" +                   "   To create finalizers that may call back into Haskell, use\n"                     "   Foreign.Concurrent.newForeignPtr instead of Foreign.newForeignPtr.");          stg_exit(EXIT_FAILURE);      } | 
