Fixed typo in Perl5 docs.

Fixed typo in section 33.7.2 "Perl5 typemaps". There is no function set_setiv()
in the perl api, the correct name is sv_setiv().
This commit is contained in:
Håkon Hægland 2019-02-10 23:18:05 +01:00 committed by Olly Betts
commit 6d2aae4718

View file

@ -1888,7 +1888,7 @@ like this:
<pre>
%typemap(out) int {
$result = sv_newmortal();
set_setiv($result, (IV) $1);
sv_setiv($result, (IV) $1);
argvi++;
}
</pre>