[svn:parrot] r49796 - trunk/lib/Parrot
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Mon Nov 8 01:36:30 UTC 2010
Author: jkeenan
Date: Mon Nov 8 01:36:29 2010
New Revision: 49796
URL: https://trac.parrot.org/parrot/changeset/49796
Log:
Correct spelling error. Improve some POD formatting.
Modified:
trunk/lib/Parrot/Headerizer.pm
Modified: trunk/lib/Parrot/Headerizer.pm
==============================================================================
--- trunk/lib/Parrot/Headerizer.pm Sun Nov 7 23:57:37 2010 (r49795)
+++ trunk/lib/Parrot/Headerizer.pm Mon Nov 8 01:36:29 2010 (r49796)
@@ -29,9 +29,7 @@
=item C<new()>
-TODO
-
-Contructor of headerizer objects
+Constructor of headerizer objects.
=cut
@@ -70,9 +68,11 @@
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
@@ -83,9 +83,11 @@
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
@@ -97,7 +99,9 @@
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.
@@ -353,6 +357,10 @@
return;
}
+=back
+
+=cut
+
1;
# Local Variables:
More information about the parrot-commits
mailing list