diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-08-07 14:47:35 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-08-07 14:47:35 +0000 |
commit | 0a2ca743617413a5ed2f7189f4985655c19f26ab (patch) | |
tree | 89c47e458177b15f1bae6bd4d437efaf7ef7edfc /pod | |
parent | 64c5a5665d9d2e73526d93f8e1b8e0488ead3228 (diff) | |
download | perl-0a2ca743617413a5ed2f7189f4985655c19f26ab.tar.gz |
The documentation for prototype() sounds a bit better like that.
p4raw-id: //depot/perl@31684
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfunc.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 13bca13f44..6160508c7b 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4152,10 +4152,10 @@ the function whose prototype you want to retrieve. If FUNCTION is a string starting with C<CORE::>, the rest is taken as a name for Perl builtin. If the builtin is not I<overridable> (such as -C<qw//>) or its arguments cannot be expressed by a prototype (such as -C<system>) returns C<undef> because the builtin does not really behave -like a Perl function. Otherwise, the string describing the equivalent -prototype is returned. +C<qw//>) or if its arguments cannot be adequately expressed by a prototype +(such as C<system>), prototype() returns C<undef>, because the builtin +does not really behave like a Perl function. Otherwise, the string +describing the equivalent prototype is returned. =item push ARRAY,LIST X<push> X<stack> |