Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix broken links
  • Loading branch information
gfldex committed Jul 14, 2016
1 parent b41ecf4 commit bfb9cfe
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion doc/Language/typesystem.pod6
Expand Up @@ -117,7 +117,7 @@ inheritance the trait can be applied more then once. Adding parents to a class
will import their methods into the target class. If the same method name occurs
in multiple parents, the first added parent will win.
If no C<is> trait is provided the default of L<C<Any>|/type/Any)> will be used
If no C<is> trait is provided the default of L<C<Any>|/type/Any> will be used
as a parent class. This forces all Perl 6 objects to have the same set of basic
methods to provide an interface for introspection and coercion to basic types.
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/X/Eval/NoSuchLang.pod6
Expand Up @@ -24,6 +24,6 @@ dies with
method lang()
Returns the language that L<&EVAL> did not know how to handle.
Returns the language that L</routine/EVAL> did not know how to handle.
=end pod
4 changes: 2 additions & 2 deletions doc/Type/X/IO/Dir.pod6
Expand Up @@ -6,7 +6,7 @@
class X::IO::Dir does X::IO is Exception { }
Error class that is thrown when a L<&dir> call fails.
Error class that is thrown when a L</routine/dir> call fails.
A typical error message is
Expand All @@ -16,6 +16,6 @@ A typical error message is
=head2 method path
Returns the path that L<&dir> failed to read.
Returns the path that L</routine/dir> failed to read.
=end pod
2 changes: 1 addition & 1 deletion doc/Type/X/IO/Link.pod6
Expand Up @@ -6,7 +6,7 @@
class X::IO::Link does X::IO is Exception
Error class for failed L<&link> operation.
Error class for failed L</routine/link> operation.
A typical error message is
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/X/IO/Rmdir.pod6
Expand Up @@ -6,7 +6,7 @@
my class X::IO::Rmdir does X::IO is Exception
Error class for failed L<&rmdir> operations.
Error class for failed L</routine/rmdir> operations.
A typical error message is
Expand All @@ -16,6 +16,6 @@ A typical error message is
=head2 method path
Returns the path L<&rmdir> failed to remove
Returns the path L</routine/rmdir> failed to remove
=end pod
4 changes: 2 additions & 2 deletions doc/Type/X/IO/Unlink.pod6
Expand Up @@ -6,7 +6,7 @@
class X::IO::Unlink does X::IO is Exception
Error class for failed L<&unlink> operation.
Error class for failed L</routine/unlink> operation.
A typical error message is
Expand All @@ -16,6 +16,6 @@ A typical error message is
=head2 method path
Returns the path that L<&unlink> failed to delete.
Returns the path that L</routine/unlink> failed to delete.
=end pod
2 changes: 1 addition & 1 deletion doc/Type/X/Placeholder/Mainline.pod6
Expand Up @@ -18,7 +18,7 @@ Produces the error message
Cannot use placeholder parameter $^x in the mainline
Note that this error can also occur when you think something is a block,
but it really is a L<< postcircumfix:<{ }> >>, for example
but it really is a L«postcircumfix:<{ }>|/routine/{ }», for example
my %h;
say %h{ $^x };
Expand Down

0 comments on commit bfb9cfe

Please sign in to comment.