stas        2004/09/09 15:29:05

  Modified:    src/docs/2.0/api/ModPerl Util.pod
  Log:
  clarify that it's the package/stash that gets cleared, not just a module
  
  Revision  Changes    Path
  1.12      +6 -6      modperl-docs/src/docs/2.0/api/ModPerl/Util.pod
  
  Index: Util.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/ModPerl/Util.pod,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -u -r1.11 -r1.12
  --- Util.pod  9 Sep 2004 22:16:39 -0000       1.11
  +++ Util.pod  9 Sep 2004 22:29:05 -0000       1.12
  @@ -163,8 +163,8 @@
   
   =head2 C<unload_module>
   
  -Unloads a module from the current perl interpreter in the safest
  -way possible.
  +Unloads a module from the current perl interpreter in the safest way
  +possible.
   
     ModPerl::Util::unload_module($module);
   
  @@ -172,7 +172,7 @@
   
   =item arg1: C<$module> (scalar)
   
  -The name of the module to unload
  +The package (stash) name to unload.
   
   =item ret: no return value
   
  @@ -180,12 +180,12 @@
   
   =back
   
  -Unloading a module from Perl is a complicated business. This function 
  +Unloading a module from Perl is a complicated business. This function
   tries very hard to do the right thing. After calling this module, it
   should be safe to C<use> a new version of the module.
   
  -References to module elements (function, variables, etc) that were taken
  -from outside the unloaded module will still be valid.
  +References to module elements (function, variables, etc) that were
  +taken from outside the unloaded module will still be valid.
   
   
   
  
  
  

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

Reply via email to