diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-02-12 23:54:27 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-02-12 23:54:27 -0800 |
commit | 075b00aa67c055a31de94e78b6ff2cc31607e3e1 (patch) | |
tree | 5c04a94f5a020300d18dcb5fbfb9fa6ff70effe6 /pod | |
parent | 5fca8acbe38ffb86144eea28854bc2de8674d6d2 (diff) | |
download | perl-075b00aa67c055a31de94e78b6ff2cc31607e3e1.tar.gz |
Correct perldiag/Died
‘die’ does not look at $_.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 5bd5800543..3338d71ea4 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1602,7 +1602,7 @@ carried away. =item Died (F) You passed die() an empty string (the equivalent of C<die "">) or -you called it with no args and both C<$@> and C<$_> were empty. +you called it with no args and C<$@> was empty. =item Document contains no data |