X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlxstut.pod;h=4756a9edbb0b71dad1304822c3c437a196d4f3ec;hb=368f1370b30d904c00b77dd19e0a1ef0ef755b31;hp=d79f4b989ad38d23be4dc08aefcc9fba5dcd1721;hpb=4a4eefd0ee0da7b6a2b5b0d021684bca80971b79;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod index d79f4b9..4756a9e 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.