example correction

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5662 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-01-21 21:24:46 +00:00
commit 0f9eff6b62

View file

@ -54,7 +54,7 @@ or you can use the %apply directive :
double fadd(double *a, double *b);
In Java you could then use it like this:
double answer = modulename.fadd(10.0 + 20.0);
double answer = modulename.fadd(10.0, 20.0);
*/