diff options
author | Steffen Mueller <smueller@cpan.org> | 2011-02-11 16:26:41 +0100 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2011-07-12 20:53:57 +0200 |
commit | 6a76c81b84bc934c501118f6c93cdfa00f4276ea (patch) | |
tree | 25b45707f5ed14500195ea53c512145360ec27ab | |
parent | 0a4f6920cf43f7d82e8bfef979bfbe7603f4c78c (diff) | |
download | perl-6a76c81b84bc934c501118f6c93cdfa00f4276ea.tar.gz |
Documentation fix
Be more precise about the return values of process_typemaps().
-rw-r--r-- | dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm index 637fc67540..6b1bf4052c 100644 --- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm +++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm @@ -303,7 +303,7 @@ refactored.) Here is a I<rough> description of what is in these hashrefs: # ... } -Keys: C types. Values: Corresponding Perl types. +Keys: C types. Values: XS types identifiers =item * C<$proto_letter_ref> @@ -329,7 +329,7 @@ Keys: C types. Values. Corresponding prototype letters. # ... } -Keys: Perl API calls B<CONFIRM!>. Values: Newline-terminated strings that +Keys: XS typemap identifiers. Values: Newline-terminated strings that will be written to C source code (F<.c>) files. The strings are C code, but with Perl variables whose values will be interpolated at F<xsubpp>'s runtime by one of the C<eval EXPR> statements in ExtUtils::ParseXS. @@ -351,7 +351,7 @@ by one of the C<eval EXPR> statements in ExtUtils::ParseXS. # ... } -Keys: Perl API calls B<CONFIRM!>. Values: Newline-terminated strings that +Keys: XS typemap identifiers. Values: Newline-terminated strings that will be written to C source code (F<.c>) files. The strings are C code, but with Perl variables whose values will be interpolated at F<xsubpp>'s runtime by one of the C<eval EXPR> statements in ExtUtils::ParseXS. |