From 970b0fdca3ea6c43fc84862b7074bc428dc7b937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B9=E3=83=8E=E3=83=AB?= Date: Mon, 20 Mar 2017 20:47:08 -0500 Subject: [PATCH] Add the missing parenthese. I'm sorry that I didn't notice this last time. --- Doc/Manual/Extending.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %rename in reverse to generate
 %rename(foo) foo_i(int);
-%rename(foo) foo_d(double;
+%rename(foo) foo_d(double);
 
 void foo_i(int);
 void foo_d(double);