diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-17 09:06:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-17 09:06:33 +0000 |
commit | 3bf5301d49e7bde9d101d2b6a61d860441624c9a (patch) | |
tree | afec35b959a3ecaf4e16385cbb231b7fa51a825a /pod/perlmod.pod | |
parent | 671d49be3f59c3499d5c499c5070da719dbb52d2 (diff) | |
download | perl-3bf5301d49e7bde9d101d2b6a61d860441624c9a.tar.gz |
It's clearer to use "morphing" than "polymorphing" when
describing what exec() does
p4raw-id: //depot/perl@26145
Diffstat (limited to 'pod/perlmod.pod')
-rw-r--r-- | pod/perlmod.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlmod.pod b/pod/perlmod.pod index fc49e34d67..513460943d 100644 --- a/pod/perlmod.pod +++ b/pod/perlmod.pod @@ -289,7 +289,7 @@ a string eval, which e.g. can be a problem in a mod_perl environment. An C<END> code block is executed as late as possible, that is, after perl has finished running the program and just before the interpreter is being exited, even if it is exiting as a result of a die() function. -(But not if it's polymorphing into another program via C<exec>, or +(But not if it's morphing into another program via C<exec>, or being blown out of the water by a signal--you have to trap that yourself (if you can).) You may have multiple C<END> blocks within a file--they will execute in reverse order of definition; that is: last in, first |