diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2015-05-21 14:11:15 +1000 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2015-05-24 08:52:31 +1000 |
commit | c04571daf6175d3976827dcfce61e08c0896d0ee (patch) | |
tree | 11f75264670597a20684179506bd5d4639b84d42 /rts/StgCRun.c | |
parent | c00f051ba187ce3048779a658a96de7ec9f4fe2f (diff) | |
download | haskell-c04571daf6175d3976827dcfce61e08c0896d0ee.tar.gz |
rts: Fix typo in comment
Diffstat (limited to 'rts/StgCRun.c')
-rw-r--r-- | rts/StgCRun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/StgCRun.c b/rts/StgCRun.c index f8a3f0faeb..02ec532d4b 100644 --- a/rts/StgCRun.c +++ b/rts/StgCRun.c @@ -692,7 +692,7 @@ StgRun(StgFunPtr f, StgRegTable *basereg) { #endif /* * allocate some space for Stg machine's temporary storage. - * Note: RESERVER_C_STACK_BYTES has to be a round number here or + * Note: RESERVED_C_STACK_BYTES has to be a round number here or * the assembler can't assemble it. */ "sub sp, sp, %3\n\t" @@ -776,7 +776,7 @@ StgRun(StgFunPtr f, StgRegTable *basereg) { /* * allocate some space for Stg machine's temporary storage. - * Note: RESERVER_C_STACK_BYTES has to be a round number here or + * Note: RESERVED_C_STACK_BYTES has to be a round number here or * the assembler can't assemble it. */ "sub sp, sp, %3\n\t" |