summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorbrian d foy <bdfoy@cpan.org>2009-11-23 18:52:57 -0600
committerbrian d foy <bdfoy@cpan.org>2009-11-23 18:53:52 -0600
commit734c9e01d195af6f982fec69a9589fd781d69a8b (patch)
treee336189b196519c6de035fc0e38e94d2fc087c14 /pod
parentdbb3120a48c1483138e02a3fadf359e5b664ae11 (diff)
downloadperl-734c9e01d195af6f982fec69a9589fd781d69a8b.tar.gz
* Reword the sentence about checking unlink failures
Diffstat (limited to 'pod')
-rw-r--r--pod/perlfunc.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 0f2b01640d..540b7233f3 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -6870,7 +6870,7 @@ it successfully deleted. On failure, it returns false and sets C<$!>
unlink glob "*.bak";
On error, C<unlink> will not tell you which files it could not remove.
-If you care about the files you could not remove, try them one
+If you want to know which files you could not remove, try them one
at a time:
foreach my $file ( @goners ) {