From: Rafael Garcia-Suarez Date: Mon, 22 May 2006 12:55:13 +0000 (+0000) Subject: Fix two nits in perlpragma.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f4cfebf967017dba26f01e563d0a7a4c1797e4d4;p=p5sagit%2Fp5-mst-13.2.git Fix two nits in perlpragma.pod p4raw-id: //depot/perl@28268 --- diff --git a/pod/perlpragma.pod b/pod/perlpragma.pod index 9267bab..9c4fd2b 100644 --- a/pod/perlpragma.pod +++ b/pod/perlpragma.pod @@ -116,10 +116,10 @@ Hence the C and C routines are called at B for the user's code. User pragmata store their state by writing to C<%^H>, hence these two -routines manipulate C<%^H>. The state information in C<%^H> stored in the +routines manipulate C<%^H>. The state information in C<%^H> is stored in the optree, and can be retrieved at runtime with C, at index 10 of the list of returned results. In the example pragma, retrieval is encapsulated -into the routine C. This uses C to determine the +into the routine C. This uses C to determine the state of C<$^H{myint}> when each line of the user's script was called, and therefore provide the correct semantics in the subroutine implementing the overloaded addition.