aboutsummaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorHåkon Hægland <hakon.hagland@gmail.com>2019-02-10 23:18:05 +0100
committerOlly Betts <ojwbetts@gmail.com>2019-02-12 10:46:56 +1300
commit6d2aae47181a82c4eba7f7fb3194abb0ecc2b513 (patch)
tree15fa48c098bffbe8896976b3a4f6b74105d4235e /Doc
parent9db02a1e6bd17898108f5c0dac7fa87c765371c6 (diff)
downloadswig-6d2aae47181a82c4eba7f7fb3194abb0ecc2b513.tar.gz
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().
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Manual/Perl5.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Manual/Perl5.html b/Doc/Manual/Perl5.html
index f3ba75572..5ce765c26 100644
--- a/Doc/Manual/Perl5.html
+++ b/Doc/Manual/Perl5.html
@@ -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>