diff options
author | Nathan Torkington <gnat@prometheus.frii.com> | 1997-04-03 08:34:15 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-03 10:03:25 +1200 |
commit | 4a6725af9146bd7faaa10aa5429ff009d393fd6d (patch) | |
tree | a3ce04fc20ee3f1d40bff76887a2a86aeab52ddf /pod/perlcall.pod | |
parent | 203c3eeca2516d7ec08a0618594a5440ce517675 (diff) | |
download | perl-4a6725af9146bd7faaa10aa5429ff009d393fd6d.tar.gz |
Pod style
Diffstat (limited to 'pod/perlcall.pod')
-rw-r--r-- | pod/perlcall.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlcall.pod b/pod/perlcall.pod index b69c539420..0bfd142cb3 100644 --- a/pod/perlcall.pod +++ b/pod/perlcall.pod @@ -1795,7 +1795,7 @@ series of C functions to act as the interface to Perl, thus In this case the functions C<fn1>, C<fn2>, and C<fn3> are used to remember the Perl subroutine to be called. Each of the functions holds -a separate hardwired index which is used in the function C<Pcb> to +a separate hard-wired index which is used in the function C<Pcb> to access the C<Map> array and actually call the Perl subroutine. There are some obvious disadvantages with this technique. @@ -1803,7 +1803,7 @@ There are some obvious disadvantages with this technique. Firstly, the code is considerably more complex than with the previous example. -Secondly, there is a hardwired limit (in this case 3) to the number of +Secondly, there is a hard-wired limit (in this case 3) to the number of callbacks that can exist simultaneously. The only way to increase the limit is by modifying the code to add more functions and then recompiling. None the less, as long as the number of functions is |