summaryrefslogtreecommitdiff
path: root/Doc/Manual/Java.html
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2006-11-24 22:30:50 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2006-11-24 22:30:50 +0000
commit532ad9d08c03e11c5f28e9c1660d9e07035ba3fd (patch)
treea3079b723fa655904243f639b026479835d841b3 /Doc/Manual/Java.html
parentabba42592b6068c2093df0eef9d9774195f6463c (diff)
downloadswig-532ad9d08c03e11c5f28e9c1660d9e07035ba3fd.tar.gz
fix typos in last commit
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9579 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Doc/Manual/Java.html')
-rw-r--r--Doc/Manual/Java.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Manual/Java.html b/Doc/Manual/Java.html
index de5aa235b..d838d4021 100644
--- a/Doc/Manual/Java.html
+++ b/Doc/Manual/Java.html
@@ -1745,7 +1745,7 @@ Method spam(int) at example.i:11 used.
</div>
<p>
-To fix this, you either need to <a href="SWIG.html#SWIG_rename_ignore">rename or ignore</a> one of the methods. For example:
+To fix this, you either need to either <a href="SWIG.html#SWIG_rename_ignore">rename or ignore</a> one of the methods. For example:
</p>
<div class="code">
@@ -1753,7 +1753,7 @@ To fix this, you either need to <a href="SWIG.html#SWIG_rename_ignore">rename or
%rename(spam_ushort) spam(unsigned short);
...
void spam(int);
-void spam(unsigned short); // Noew renamed to spam_ushort
+void spam(unsigned short); // Now renamed to spam_ushort
</pre>
</div>