summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2011-08-17 21:52:52 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2011-08-17 21:52:52 +0000
commit3099911397ea5946ab45add77842b77aa4137049 (patch)
treee173c40cc42ff5830bda735a16b2423a323e16b9 /Doc
parenta724cf58f7ac9962fd7762203fc98a0dc7ab8793 (diff)
downloadswig-3099911397ea5946ab45add77842b77aa4137049.tar.gz
some doc typo fixes
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12778 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Manual/CSharp.html4
-rw-r--r--Doc/Manual/Java.html2
-rw-r--r--Doc/Manual/SWIGPlus.html2
3 files changed, 4 insertions, 4 deletions
diff --git a/Doc/Manual/CSharp.html b/Doc/Manual/CSharp.html
index 6ea2fb72c..d3d68bd53 100644
--- a/Doc/Manual/CSharp.html
+++ b/Doc/Manual/CSharp.html
@@ -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>
diff --git a/Doc/Manual/Java.html b/Doc/Manual/Java.html
index 2ae9f7b95..428528403 100644
--- a/Doc/Manual/Java.html
+++ b/Doc/Manual/Java.html
@@ -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">
diff --git a/Doc/Manual/SWIGPlus.html b/Doc/Manual/SWIGPlus.html
index c8e5ee870..97c2e058a 100644
--- a/Doc/Manual/SWIGPlus.html
+++ b/Doc/Manual/SWIGPlus.html
@@ -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>