diff --git a/Doc/Manual/SWIG.html b/Doc/Manual/SWIG.html index e3f6254ca..32c1d97b0 100644 --- a/Doc/Manual/SWIG.html +++ b/Doc/Manual/SWIG.html @@ -1843,19 +1843,20 @@ all to `output' by specifying :

-A new %rename for the same name will override the current -name for all uses after it in the file, and setting the new name to -"" will remove the rename. So, for instance, if you wanted to rename -some things in one file and not in another, you could do: +A new %rename for the same name will replace the current +%rename for all uses after it in the file, and setting the +new name to "" will remove the rename. So, for instance, if you +wanted to rename some things in one file and not in another, you could +do:

-  %rename(print1) print
+  %rename(print1) print;
   %include "header1.h" //Anything "print" in here will become "print1"
-  %rename(print2) print
+  %rename(print2) print;
   %include "header2.h" //Anything "print" in here will become "print2"
-  %rename("") print
+  %rename("") print;
   %include "header3.h" //Anything "print" in here will remain "print"