Skip to content

Commit

Permalink
Correct spelling error. Improve some POD formatting.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@49796 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
jkeenan committed Nov 8, 2010
1 parent ad36671 commit 075907c
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions lib/Parrot/Headerizer.pm
Expand Up @@ -29,9 +29,7 @@ use warnings;

=item C<new()>
TODO
Contructor of headerizer objects
Constructor of headerizer objects.
=cut

Expand Down Expand Up @@ -70,9 +68,11 @@ sub new {
return $self;
}

=item $headerizer->valid_macro( $macro )
=item C<valid_macro()>
$headerizer->valid_macro( $macro )
Returns a boolean saying wither I<$macro> is a valid PARROT_XXX macro.
Returns a boolean saying whether I<$macro> is a valid C<PARROT_XXX> macro.
=cut

Expand All @@ -83,9 +83,11 @@ sub valid_macro {
return exists $self->{valid_macros}{$macro};
}

=item $headerizer->valid_macros()
=item C<valid_macros()>
Returns a list of all the valid PARROT_XXX macros.
$headerizer->valid_macros()
Returns a list of all the valid C<PARROT_XXX> macros.
=cut

Expand All @@ -97,7 +99,9 @@ sub valid_macros {
return @macros;
}

=item $headerizer->extract_function_declarations($text)
=item C<extract_function_declarations()>
$headerizer->extract_function_declarations($text)
Extracts the function declarations from the text argument, and returns an
array of strings containing the function declarations.
Expand Down Expand Up @@ -353,6 +357,10 @@ sub squawk {
return;
}

=back
=cut

1;

# Local Variables:
Expand Down

0 comments on commit 075907c

Please sign in to comment.