Skip to content

Commit dc98fad

Browse files
author
Carl Masak
committed
s:g/IOU/IO::Huh/
1 parent 6543a80 commit dc98fad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

S16-io.pod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ coercer returns one of 4 object types:
126126
IO::File # a regular file
127127
IO::Dir # a directory
128128
IO::Local # something else that exists
129-
IOU # not recognized as something that exists
129+
IO::Huh # not recognized as something that exists
130130

131131
All these classes are consumers of the C<IO::Pathy> role, which provided all
132132
of the methods that have to do with paths (such as C<.basename>).
@@ -284,7 +284,7 @@ These classes consume the C<IO::Pathy> role:
284284
IO::File # a regular file
285285
IO::Dir # a directory
286286
IO::Local # something else that exists (locally)
287-
IOU # not recognized as something that exists
287+
IO::Huh # not recognized as something that exists
288288

289289
The easiest way to create an object that does the C<IO::Pathy> role, is to
290290
use the C<.IO> coercer. It takes an optional C<:CWD> parameter to indicate
@@ -296,7 +296,7 @@ C<$*CWD>).
296296

297297
The following file test methods are provided by the IO::Pathy role, or are
298298
overridden by a class (e.g. C<.e> is overridden to return C<True> for all but
299-
the C<IOU> class):
299+
the C<IO::Huh> class):
300300

301301
r is readable by effective uid/gid
302302
w is writable by effective uid/gid
@@ -355,7 +355,7 @@ object with the class:
355355
when IO::Dir {
356356
say "$io is a directory";
357357
}
358-
when IOU {
358+
when IO::Huh {
359359
say "doesn't exist";
360360
}
361361
}
@@ -478,9 +478,9 @@ An object indicating an existing directory entry (C<-l>, C<-L>, C<-b> or
478478
C<-c>). Usually created as one of the objects returned by a C<dir()> or
479479
the C<.IO> coercer.
480480

481-
=head2 IOU
481+
=head2 IO::Huh
482482

483-
class IOU does IO does IO::Pathy
483+
class IO::Huh does IO does IO::Pathy
484484

485485
An object indicating an B<non>-existing directory entry (C<!-e>). Usually
486486
created by the C<.IO> coercer.

0 commit comments

Comments
 (0)