summaryrefslogtreecommitdiff
path: root/Doc/Manual/Customization.html
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/Manual/Customization.html')
-rw-r--r--Doc/Manual/Customization.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/Manual/Customization.html b/Doc/Manual/Customization.html
index a0a89c042..8e26a7e8a 100644
--- a/Doc/Manual/Customization.html
+++ b/Doc/Manual/Customization.html
@@ -485,12 +485,12 @@ variables are replaced with.
</tr>
<tr>
-<td>$parentname</td>
+<td>$parentclassname</td>
<td>The parent class name (if any) for a method.</td>
</tr>
<tr>
-<td>$parentsymname</td>
+<td>$parentclasssymname</td>
<td>The target language parent class name (if any) for a method.</td>
</tr>
@@ -547,7 +547,7 @@ Below shows the expansions for the 1st of the overloaded <tt>something</tt> wrap
The <tt>exception.i</tt> library file provides support for creating
language independent exceptions in your interfaces. To use it, simply
put an "<tt>%include exception.i</tt>" in your interface file. This
-creates a function<tt> SWIG_exception()</tt> that can be used to raise
+provides a function <tt>SWIG_exception()</tt> that can be used to raise
common scripting language exceptions in a portable manner. For example :</p>
<div class="code"><pre>
@@ -1082,7 +1082,7 @@ For example:
<div class="code">
<pre>
-%feature("except") void hello(int i=0, double d=0.0) { ... }
+%feature("except") hello(int i=0, double d=0.0) { ... }
void hello(int i=0, double d=0.0);
</pre>
</div>
@@ -1105,7 +1105,7 @@ If the default arguments are not specified in the feature:
<div class="code">
<pre>
-%feature("except") void hello(int i, double d) { ... }
+%feature("except") hello(int i, double d) { ... }
void hello(int i=0, double d=0.0);
</pre>
</div>