# New Ticket Created by  Bram Geron 
# Please include the string:  [perl #46595]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=46595 >


A few spelling fixes.

 src/inter_call.c         |    2 +-
 src/pmc/continuation.pmc |    2 +-
 src/sub.c                |    2 +-
 t/pmc/continuation.t     |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

Cheers,
-- 
Bram Geron | GPG 0xE7B9E65E
diff --git a/src/inter_call.c b/src/inter_call.c
index 0e9920e..fe129c3 100644
--- a/src/inter_call.c
+++ b/src/inter_call.c
@@ -1059,7 +1059,7 @@ Parrot_process_args(PARROT_INTERP, NOTNULL(call_state 
*st), arg_pass_t param_or_
         dod_unregister_pmc(interp, array);
     }
 
-    /* is there another argument? if we're thowing errors, that's an error */
+    /* is there another argument? if we're throwing errors, that's an error */
     if (err_check && Parrot_fetch_arg(interp, st) && !st->name && !(dest->sig 
& PARROT_ARG_NAME))
         too_many(interp, st, action);
 
diff --git a/src/pmc/continuation.pmc b/src/pmc/continuation.pmc
index 4f65a7c..862897b 100644
--- a/src/pmc/continuation.pmc
+++ b/src/pmc/continuation.pmc
@@ -64,7 +64,7 @@ Initializes the continuation.
         /* PANIC("don't do that"); */
         /*
          * Whenever we create a continuation, all return continuations
-         * up the call chain maybe reused due to invoking the
+         * up the call chain may be reused due to invoking the
          * continuation. To avoid that all return continuations are
          * converted to true continuations.
          */
diff --git a/src/sub.c b/src/sub.c
index 17461c4..31f6f14 100644
--- a/src/sub.c
+++ b/src/sub.c
@@ -239,7 +239,7 @@ new_ret_continuation_pmc(PARROT_INTERP, NULLOK(opcode_t 
*address))
 
 =item C<invalidate_retc_context>
 
-Make true Continuation from all RetContinuations up the call chain.
+Make true Continuations from all RetContinuations up the call chain.
 
 =cut
 
diff --git a/t/pmc/continuation.t b/t/pmc/continuation.t
index 9ff154c..df1563b 100644
--- a/t/pmc/continuation.t
+++ b/t/pmc/continuation.t
@@ -35,7 +35,7 @@ OUT
 pir_output_is( <<'CODE', <<'OUT', 'continuations preserve bsr/ret state.' );
 ## Here is a trace of execution, keyed by labels.
 ##   L1:  bsr to rtn1
-## rtn1:  create a continuation that directs us to L6, and (we expect) captures
+## rtn1:  create a continuation that directs us to L6, and (we expect)
 ##        captures the whole dynamic state, including the return address to L3.
 ##   L3:  return back to main
 ##   L4:  if we're here the first time, call rtn2

Reply via email to