Fix more comment typos

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10469 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2008-05-19 20:36:00 +00:00
commit b094149eb8

View file

@ -26,7 +26,7 @@ typedef unsigned short guint16;
%}
/* Here, the auxiliar macro to wrap a macro */
/* Here, the auxiliary macro to wrap a macro */
%define %wrapmacro(type, name, lparams, lnames)
%rename(name) SWIGMACRO_##name;
%inline %{
@ -45,7 +45,7 @@ type SWIGMACRO_##name(lparams) {
%wrapmacro(double, max, PLIST(double a, double b), PLIST(a, b));
/* Maybe in the future, a swig directive will do this easier:
/* Maybe in the future, a swig directive will make this easier:
#define max(a,b) ((a) > (b) ? (a) : (b))