fix typos in last commit

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9579 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-11-24 22:30:50 +00:00
commit 86898fde4f

View file

@ -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>