Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a bunch of broken links
  • Loading branch information
Jan-Olof Hendig committed May 17, 2016
1 parent 1f86474 commit 3a9c4f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/Type/IO/Handle.pod
Expand Up @@ -152,9 +152,9 @@ reading.
=head2 method path
For a handle opened on a file this returns the L<IO::Path|/type/IO/Path> that represents
For a handle opened on a file this returns the L<IO::Path|/type/IO::Path> that represents
the file. For the standard I/O handles C<$*IN>, C<$*OUT> and C<$*ERR> it returns a
L<IO::Special|/type/IO/Special> object.
L<IO::Special|/type/IO::Special> object.
$fh.path;
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/IO/Special.pod
Expand Up @@ -5,8 +5,8 @@
=SUBTITLE Represent a Standard I/O device
This provides a similar interface for the special standard input and output
handles C<$*IN>, C<$*OUT> and C<$*ERR> to that of L<IO::Path|/type/IO/Path>
for regular files. It is typically returned by the L<path method|/type/IO/Handle#method_path>
handles C<$*IN>, C<$*OUT> and C<$*ERR> to that of L<IO::Path|/type/IO::Path>
for regular files. It is typically returned by the L<path method|/type/IO::Handle#method_path>
of those handles so that they can be used interchangeably with the handles of
regular files.
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Nil.pod
Expand Up @@ -56,7 +56,7 @@ of the container you assigned it into.
$x.say; #-> (Int)
Because an untyped variable is type C<Any>, assigning a C<Nil> to one
will result in an L<(Any)> type object.
will result in an L<(Any)|/type/Any> type object.
my $x = Nil;
$x.say; #-> (Any)
Expand Down

0 comments on commit 3a9c4f9

Please sign in to comment.