We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19fa10 commit 3bbad9eCopy full SHA for 3bbad9e
doc/Type/IO/Handle.pod6
@@ -9,8 +9,8 @@
9
10
Instances of C<IO::Handle> encapsulate an I<handle> to manipulate input/output resources.
11
Usually there is no need to create directly an C<IO::Handle> instance, since it will be done
12
-by other roles and methods. For instance, thru the L<IO> role it is possible to get an handle
13
-to a file that will result of type C<IO::Handle>:
+by other roles and methods. For instance, an L<IO::Path> object provides
+an L<open> method that returns an C<IO::Handle>:
14
15
my $fh = '/tmp/log.txt'.IO.open;
16
say $fh.^name; # OUTPUT: IO::Handle
0 commit comments