Skip to content

Commit

Permalink
Mixed languages: bad girl! spotted by japhb__++
Browse files Browse the repository at this point in the history
Finally someone looks at this  :-)
  • Loading branch information
lizmat committed Nov 3, 2013
1 parent 73b7398 commit 327e599
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions S11-modules.pod
Expand Up @@ -786,6 +786,8 @@ Base class (interface, really) for the object living in the @*INC array. Used
both for installing compunits, as well as finding a certain compunit by way
of its from, longname, auth and ver information.



=head2 new

my $repo = CompUnitRepo.new( $location );
Expand All @@ -800,7 +802,7 @@ CPAN mirror or github repository. Returns the instantiated object.

=head2 install

my $installed = $repo->install( $source, $from? )
my $installed = $repo.install( $source, $from? )

Install a compilation unit in the appropriate way for this object. May cause
a fatal exception if this repository does not support installing. The first
Expand All @@ -811,7 +813,7 @@ unit was installed.

=head2 candidates

my @candidates = $repo->candidates( $longname, $auth?, $ver?, $from? );
my @candidates = $repo.candidates( $longname, $auth?, $ver?, $from? );

Return L<CompUnit> candidates given the matching credentials.

Expand All @@ -821,6 +823,6 @@ The object that describes a compilation unit.

=head2 load

my $loaded = @candidates[0]->load;
my $loaded = @candidates[0].load;

=for vim:set expandtab sw=4:

0 comments on commit 327e599

Please sign in to comment.