stas        2004/06/09 02:13:48

  Modified:    src/docs/1.0/guide porting.pod
  Log:
  code samples fix
  
  Revision  Changes    Path
  1.21      +4 -4      modperl-docs/src/docs/1.0/guide/porting.pod
  
  Index: porting.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/1.0/guide/porting.pod,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -u -r1.20 -r1.21
  --- porting.pod       15 Nov 2003 06:12:21 -0000      1.20
  +++ porting.pod       9 Jun 2004 09:13:48 -0000       1.21
  @@ -1603,7 +1603,7 @@
   C</home/httpd/perl/my/> is in C<@INC> at server startup.
   
     require "my-lib.pl";
  -  use MyModule.pm;
  +  use MyModule;
     print $INC{"my-lib.pl"},"\n";
     print $INC{"MyModule.pm"},"\n";
   
  @@ -1616,7 +1616,7 @@
   
     use lib qw(.);
     require "my-lib.pl";
  -  use MyModule.pm;
  +  use MyModule;
     print $INC{"my-lib.pl"},"\n";
     print $INC{"MyModule.pm"},"\n";
   
  @@ -1630,7 +1630,7 @@
   C</home/httpd/perl/my/> isn't in C<@INC> at server startup.
   
     require "my-lib.pl";
  -  use MyModule.pm;
  +  use MyModule;
     print $INC{"my-lib.pl"},"\n";
     print $INC{"MyModule.pm"},"\n";
   
  @@ -1640,7 +1640,7 @@
   
     use lib qw(.);
     require "my-lib.pl";
  -  use MyModule.pm;
  +  use MyModule;
     print $INC{"my-lib.pl"},"\n";
     print $INC{"MyModule.pm"},"\n";
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to