some doc typo fixes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12778 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2011-08-17 21:52:52 +00:00
commit 3099911397
3 changed files with 4 additions and 4 deletions

View file

@ -637,7 +637,7 @@ This results in the module class method
</div>
<p>
and intermediate class method
and intermediary class method
</p>
<div class="code">
@ -732,7 +732,7 @@ marshalling is the "unsafe" quantifier, which is required because we are handlin
</p>
<p>
Also the intermediate class method looks a little different from the default marshalling
Also the intermediary class method looks a little different from the default marshalling
example - the method is expecting an IntPtr as the parameter type.
</p>

View file

@ -3461,7 +3461,7 @@ void callup(DirectorBase *director) {
<p>
The following <code>DirectorDerived</code> Java class is derived from the Java proxy class <code>DirectorBase</code> and overrides <code>upcall_method()</code>.
When C++ code invokes <code>upcall_method()</code>, the SWIG-generated C++ code redirects the call via JNI to the Java <code>DirectorDerived</code> subclass.
Naturally, the SWIG generated C++ code and the generated Java intermediate class marshal and convert arguments between C++ and Java when needed.
Naturally, the SWIG generated C++ code and the generated Java intermediary class marshal and convert arguments between C++ and Java when needed.
</p>
<div class="code">

View file

@ -3356,7 +3356,7 @@ public:
<p>
In this case, the <tt>%extend</tt> directive is not needed, and
<tt>%template</tt> does the exactly same job, i.e., it adds two new
<tt>%template</tt> does exactly the same job, i.e., it adds two new
methods to the Foo class.
</p>