summaryrefslogtreecommitdiff
path: root/Doc/Manual/Extending.html
diff options
context:
space:
mode:
authorスノル <sunoru@live.com>2017-03-20 20:47:08 -0500
committerGitHub <noreply@github.com>2017-03-20 20:47:08 -0500
commit970b0fdca3ea6c43fc84862b7074bc428dc7b937 (patch)
treec56142e9028a56b882dd3a04c22fcd7ff07e64cd /Doc/Manual/Extending.html
parent24fba025710b08d2d1da7cc734ca164aa6e1acbc (diff)
downloadswig-970b0fdca3ea6c43fc84862b7074bc428dc7b937.tar.gz
Add the missing parenthese.
I'm sorry that I didn't notice this last time.
Diffstat (limited to 'Doc/Manual/Extending.html')
-rw-r--r--Doc/Manual/Extending.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Manual/Extending.html b/Doc/Manual/Extending.html
index 80fe77d4d..bf70b69ac 100644
--- a/Doc/Manual/Extending.html
+++ b/Doc/Manual/Extending.html
@@ -729,7 +729,7 @@ For instance, the following example uses <tt>%rename</tt> in reverse to generate
<div class="code">
<pre>
%rename(foo) foo_i(int);
-%rename(foo) foo_d(double;
+%rename(foo) foo_d(double);
void foo_i(int);
void foo_d(double);