Skip to content

Commit

Permalink
Missing colons after invocant type in signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanstowe committed Jun 9, 2015
1 parent 4edf556 commit b2d6863
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Type/IO/Path.pod
Expand Up @@ -42,7 +42,7 @@ Returns the absolute path as a string.
=head2 method basename
method basename(IO::Path:D)
method basename(IO::Path:D:)
Returns the basename part of the path object. That is, it returns the name of
the file relative to its directory.
Expand All @@ -51,7 +51,7 @@ the file relative to its directory.
=head2 method dirname
method dirname(IO::Path:D)
method dirname(IO::Path:D:)
Returns the directory name portion of the path object. That is, it returns the path
excluding the volume and the base name.
Expand All @@ -60,7 +60,7 @@ excluding the volume and the base name.
=head2 method volume
method volume(IO::Path:D)
method volume(IO::Path:D:)
Returns the volume portion of the path object. On Unix system, this is always
the empty string.
Expand All @@ -69,7 +69,7 @@ the empty string.
=head2 method parts
method parts(IO::Path:D) returns Hash
method parts(IO::Path:D:) returns Hash
Returns a hash with the keys C<dirname>, C<path> and C<volume>, and as
values the return values of the methods with the same names.
Expand Down

0 comments on commit b2d6863

Please sign in to comment.