[svn:parrot] r46569 - in trunk: docs docs/book/draft docs/book/pct editor lib/Parrot/IO runtime/parrot/library/Getopt src src/gc src/pmc t/compilers/pge/p5regex t/compilers/pge/perl6regex tools/dev

cotto at svn.parrot.org cotto at svn.parrot.org
Thu May 13 05:03:49 UTC 2010


Author: cotto
Date: Thu May 13 05:03:48 2010
New Revision: 46569
URL: https://trac.parrot.org/parrot/changeset/46569

Log:
[cage] fix most (all?) misuses of "it's"

Modified:
   trunk/docs/book/draft/ch08_dynops.pod
   trunk/docs/book/pct/ch03_compiler_tools.pod
   trunk/docs/book/pct/ch05_nqp.pod
   trunk/docs/parrotbyte.pod
   trunk/editor/pasm.el
   trunk/lib/Parrot/IO/File.pm
   trunk/runtime/parrot/library/Getopt/Obj.pir
   trunk/src/gc/api.c
   trunk/src/parrot_debugger.c
   trunk/src/pmc/scheduler.pmc
   trunk/t/compilers/pge/p5regex/p5rx.t
   trunk/t/compilers/pge/perl6regex/01-regex.t
   trunk/tools/dev/parrot_coverage.pl

Modified: trunk/docs/book/draft/ch08_dynops.pod
==============================================================================
--- trunk/docs/book/draft/ch08_dynops.pod	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/docs/book/draft/ch08_dynops.pod	Thu May 13 05:03:48 2010	(r46569)
@@ -156,11 +156,11 @@
 =item * inout
 
 The parameter is an input and an output. It should be initialized before
-calling the op, and it's value will change after the op executes.
+calling the op, and its value will change after the op executes.
 
 =item * invar
 
-The parameter is a reference type like a String or PMC, and it's internals
+The parameter is a reference type like a String or PMC, and its internals
 might change in the call.
 
 =back

Modified: trunk/docs/book/pct/ch03_compiler_tools.pod
==============================================================================
--- trunk/docs/book/pct/ch03_compiler_tools.pod	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/docs/book/pct/ch03_compiler_tools.pod	Thu May 13 05:03:48 2010	(r46569)
@@ -29,7 +29,7 @@
 The Parrot Virtual Machine was originally conceived of as the engine for
 executing the new Perl 6 language, when specifications for that were first
 starting to be drafted. However, as time went on it was decided that Parrot
-would benefit from having a clean abstraction layer between it's internals
+would benefit from having a clean abstraction layer between its internals
 and the Perl 6 language syntax. This clean abstraction layer brought with it
 the side effect that Parrot could be used to host a wide variety of dynamic
 languages, not just Perl 6. And beyond just hosting them, it could
@@ -81,7 +81,7 @@
 Parrot has a robust system for interfacing with external native code
 libraries, such as those commonly written in C, C++, Fortran and other
 compiled languages. Where previously every interpreter would need to
-maintain it's own bindings and interfaces to libraries, Parrot enables
+maintain its own bindings and interfaces to libraries, Parrot enables
 developers to write library bindings once and use them seamlessly from
 any language executing on Parrot. Want to use Tcl's Tk libraries, along with
 Python's image manipulation libraries in a program you are writing in Perl?

Modified: trunk/docs/book/pct/ch05_nqp.pod
==============================================================================
--- trunk/docs/book/pct/ch05_nqp.pod	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/docs/book/pct/ch05_nqp.pod	Thu May 13 05:03:48 2010	(r46569)
@@ -139,7 +139,7 @@
 
 X<match object>
 X<$/>
-The match object C<$/> it's a data structure that's all business: it's both a
+The match object C<$/> is a data structure that's all business: it's both a
 hash and an array. Because it's a special variable used pervasively in PCT, it
 has a special shortcut syntax:
 

Modified: trunk/docs/parrotbyte.pod
==============================================================================
--- trunk/docs/parrotbyte.pod	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/docs/parrotbyte.pod	Thu May 13 05:03:48 2010	(r46569)
@@ -188,7 +188,7 @@
 
 A source to bytecode position mapping simply states that the bytecode that
 starts from the specified offset up until the offset in the next mapping, or
-if there is none up until the end of the bytecode, has it's source in
+if there is none up until the end of the bytecode, has its source in
 location X.
 
 A mapping always starts with the offset in the bytecode, followed by the

Modified: trunk/editor/pasm.el
==============================================================================
--- trunk/editor/pasm.el	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/editor/pasm.el	Thu May 13 05:03:48 2010	(r46569)
@@ -12,7 +12,7 @@
 ;;;;
 ;;;; 1) highlighting for labels, comments and ops which modify program
 ;;;; flow (if, bsr, jsr, etc.). I have intentionally kept the
-;;;; highlighting to a minimum (highlighitng loses it's point when you
+;;;; highlighting to a minimum (highlighitng loses its point when you
 ;;;; highlight _everything_), however if someone wants i'll add in
 ;;;; different highlighting levels ala cperl-mode.
 ;;;;

Modified: trunk/lib/Parrot/IO/File.pm
==============================================================================
--- trunk/lib/Parrot/IO/File.pm	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/lib/Parrot/IO/File.pm	Thu May 13 05:03:48 2010	(r46569)
@@ -229,7 +229,7 @@
 
 =item C<is_hidden()>
 
-Returns whether the file is "hidden", i.e. it's name starts with a dot.
+Returns whether the file is "hidden", i.e. its name starts with a dot.
 
 =cut
 

Modified: trunk/runtime/parrot/library/Getopt/Obj.pir
==============================================================================
--- trunk/runtime/parrot/library/Getopt/Obj.pir	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/runtime/parrot/library/Getopt/Obj.pir	Thu May 13 05:03:48 2010	(r46569)
@@ -153,7 +153,7 @@
 endif_1:
 
     # ok now, we know we've got an arg to process, maybe long
-    # maybe short, maybe with it's own argument.
+    # maybe short, maybe with its own argument.
     $S0 = substr arg, 0, 2
     unless $S0 == '--' goto shortarg
 

Modified: trunk/src/gc/api.c
==============================================================================
--- trunk/src/gc/api.c	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/src/gc/api.c	Thu May 13 05:03:48 2010	(r46569)
@@ -890,7 +890,7 @@
 
 =item C<void Parrot_block_GC_mark(PARROT_INTERP)>
 
-Blocks the GC from performing it's mark phase.
+Blocks the GC from performing its mark phase.
 
 =item C<void Parrot_unblock_GC_mark(PARROT_INTERP)>
 
@@ -898,7 +898,7 @@
 
 =item C<void Parrot_block_GC_sweep(PARROT_INTERP)>
 
-Blocks the GC from performing it's sweep phase.
+Blocks the GC from performing its sweep phase.
 
 =item C<void Parrot_unblock_GC_sweep(PARROT_INTERP)>
 

Modified: trunk/src/parrot_debugger.c
==============================================================================
--- trunk/src/parrot_debugger.c	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/src/parrot_debugger.c	Thu May 13 05:03:48 2010	(r46569)
@@ -331,7 +331,7 @@
 
 =item * Start of rewrite - leo 2005.02.16
 
-The debugger now uses it's own interpreter. User code is run in
+The debugger now uses its own interpreter. User code is run in
 Interp* debugee. We have:
 
   debug_interp->pdb->debugee->debugger

Modified: trunk/src/pmc/scheduler.pmc
==============================================================================
--- trunk/src/pmc/scheduler.pmc	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/src/pmc/scheduler.pmc	Thu May 13 05:03:48 2010	(r46569)
@@ -252,7 +252,7 @@
     VTABLE void destroy() {
         Parrot_Scheduler_attributes * const core_struct = PARROT_SCHEDULER(SELF);
         /* TT #946: this line is causing an order-of-destruction error
-           because the scheduler is being freed before it's tasks.
+           because the scheduler is being freed before its tasks.
            Commenting this out till we get a real fix (although it's a hack) */
         /* MUTEX_DESTROY(core_struct->msg_lock); */
     }

Modified: trunk/t/compilers/pge/p5regex/p5rx.t
==============================================================================
--- trunk/t/compilers/pge/p5regex/p5rx.t	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/t/compilers/pge/p5regex/p5rx.t	Thu May 13 05:03:48 2010	(r46569)
@@ -789,7 +789,7 @@
 .end
 
 
-# given a single digit hex value, return it's int value.
+# given a single digit hex value, return its int value.
 .sub hex_val
     .param string digit
 

Modified: trunk/t/compilers/pge/perl6regex/01-regex.t
==============================================================================
--- trunk/t/compilers/pge/perl6regex/01-regex.t	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/t/compilers/pge/perl6regex/01-regex.t	Thu May 13 05:03:48 2010	(r46569)
@@ -409,7 +409,7 @@
 .end
 
 
-# given a single digit hex value, return it's int value.
+# given a single digit hex value, return its int value.
 .sub hex_val
   .param string digit
 

Modified: trunk/tools/dev/parrot_coverage.pl
==============================================================================
--- trunk/tools/dev/parrot_coverage.pl	Thu May 13 04:21:54 2010	(r46568)
+++ trunk/tools/dev/parrot_coverage.pl	Thu May 13 05:03:48 2010	(r46569)
@@ -93,7 +93,7 @@
     # we need to move to the appropriate place, alongside the
     # sourcefile that produced it.  Hence, as soon as we know the true
     # name of the object file being profiled, we rename the gcov log
-    # file.  The -o flag is necessary to help gcov locate it's basic
+    # file.  The -o flag is necessary to help gcov locate its basic
     # block (.bb) files.
     my $cmd = "gcov -f -b -o $dirname $src_filename";
     print "Running $cmd\n" if $DEBUG;


More information about the parrot-commits mailing list