diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-24 19:01:24 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-24 19:01:24 +0000 |
commit | a2293a43268c593a8a95d38299057a646f0fb089 (patch) | |
tree | 515232728afb60307b625135e36ae5a964b30148 /pod/perlxstut.pod | |
parent | 6f611a1a07288b915db6721d056da56a6d688631 (diff) | |
download | perl-a2293a43268c593a8a95d38299057a646f0fb089.tar.gz |
more pod nits (from Larry Virden)
p4raw-id: //depot/perl@5939
Diffstat (limited to 'pod/perlxstut.pod')
-rw-r--r-- | pod/perlxstut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod index d79f4b989a..4756a9edbb 100644 --- a/pod/perlxstut.pod +++ b/pod/perlxstut.pod @@ -476,7 +476,7 @@ section on the argument stack. In general, it's not a good idea to write extensions that modify their input parameters, as in Example 3. Instead, you should probably return multiple values in an array and let the caller handle them (we'll do this in a later -example). However, in order to better accomodate calling pre-existing C +example). However, in order to better accommodate calling pre-existing C routines, which often do modify their input parameters, this behavior is tolerated. |