[svn:parrot] r41928 - trunk/docs/book/pir

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Sun Oct 18 14:42:51 UTC 2009


Author: jkeenan
Date: Sun Oct 18 14:42:51 2009
New Revision: 41928
URL: https://trac.parrot.org/parrot/changeset/41928

Log:
Correcting spelling errors as suggested by rblasch++ in https://trac.parrot.org/parrot/ticket/1117.

Modified:
   trunk/docs/book/pir/ch06_subroutines.pod

Modified: trunk/docs/book/pir/ch06_subroutines.pod
==============================================================================
--- trunk/docs/book/pir/ch06_subroutines.pod	Sun Oct 18 14:24:19 2009	(r41927)
+++ trunk/docs/book/pir/ch06_subroutines.pod	Sun Oct 18 14:42:51 2009	(r41928)
@@ -188,7 +188,7 @@
 X<named parameters>
 Named parameters are an alternative to positional parameters. Instead of
 passing parameters by their position in the string, Parrot assigns
-arguments to parameters by their name.  Consequencly you may pass named
+arguments to parameters by their name.  Consequently you may pass named
 parameters in any order.  Declare named parameters with with the
 C<:named>X<:named parameter modifier> modifier.
 
@@ -390,7 +390,7 @@
 
   $ parrot args.pir foo bar baz
 
-... they will be accesible at index 1, 2, and 3 of the PMC parameter.N<Index 0
+... they will be accessible at index 1, 2, and 3 of the PMC parameter.N<Index 0
 is unused.>
 
 =begin PIR
@@ -662,7 +662,7 @@
 what it knows about lexical variables. Not all subroutines get a C<LexInfo> PMC
 by default; subroutines need to indicate to Parrot that they require a
 C<LexInfo> PMC. One way to do this is with the C<.lex> directive.  Of course,
-the C<.lex> directive only works for languages that know the names of there
+the C<.lex> directive only works for languages that know the names of their
 lexical variables at compile time. Languages where this information is not
 available can mark the subroutine with C<:lex> instead.
 


More information about the parrot-commits mailing list