Skip to content

Commit 46e94bc

Browse files
committed
Revises unlink, closes #2096
1 parent cbcf464 commit 46e94bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/IO/Path.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
=for code
88
class IO::Path is Cool does IO { }
99
10-
The workhorse of IO operations.
10+
C<IO::Path> is the workhorse of IO operations.
1111
1212
Conceptually, an C<IO::Path> object consists of a volume, a directory, and a
1313
basename. It supports both purely textual operations, and operations that access
@@ -1006,8 +1006,8 @@ Defined as:
10061006
method unlink(IO::Path:D: --> True)
10071007
sub unlink(*@filenames --> List:D)
10081008
1009-
Delete all specified ordinary files, links, or symbolic links. See L<rmdir>
1010-
to delete directories.
1009+
Delete all specified ordinary files, links, or symbolic links for which there
1010+
are privileges to do so. See L<rmdir> to delete directories.
10111011
10121012
The subroutine form returns the names of the files that were successfully
10131013
deleted. The method form returns C<True> on success, or

0 commit comments

Comments
 (0)