diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html
index 0f84d937a..a44ac8fe0 100644
--- a/Doc/Manual/Contents.html
+++ b/Doc/Manual/Contents.html
@@ -355,7 +355,7 @@
Multi-argument typemaps
The run-time type checker
-Typemaps and overloading
+Typemaps and overloading
More about %apply and %clear
Reducing wrapper code size
Passing data between typemaps
diff --git a/Doc/Manual/SWIGPlus.html b/Doc/Manual/SWIGPlus.html
index 046577b52..c70e940c9 100644
--- a/Doc/Manual/SWIGPlus.html
+++ b/Doc/Manual/SWIGPlus.html
@@ -662,7 +662,12 @@ For example if a method has ten default arguments, then eleven wrapper methods a
Please see the Features and default arguments
-section for more information on using %feature for functions with default arguments.
+section for more information on using %feature with functions with default arguments.
+The Ambiguity resolution and renaming section
+also deals with using %rename and %ignore on methods with default arguments.
+If you are writing your own typemaps for types used in methods with default arguments, you may also need to write a typecheck typemap.
+See the Typemaps and overloading section for details or otherwise use the
+use the compactdefaultargs feature as mentioned below.
diff --git a/Doc/Manual/Sections.html b/Doc/Manual/Sections.html
index b79d695c9..1c4850124 100644
--- a/Doc/Manual/Sections.html
+++ b/Doc/Manual/Sections.html
@@ -6,7 +6,7 @@
SWIG-1.3 Development Documentation
-Last update : SWIG-1.3.23 (November 6, 2004)
+Last update : SWIG-1.3.23 (November 11, 2004)
Sections
diff --git a/Doc/Manual/Typemaps.html b/Doc/Manual/Typemaps.html
index 2452c7f79..2d4b405fc 100644
--- a/Doc/Manual/Typemaps.html
+++ b/Doc/Manual/Typemaps.html
@@ -63,7 +63,7 @@
Multi-argument typemaps
The run-time type checker
-Typemaps and overloading
+Typemaps and overloading
More about %apply and %clear
Reducing wrapper code size
Passing data between typemaps
@@ -2744,7 +2744,7 @@ type-checking. This code is also included in every generated wrapped file so yo
probably just look at the output of SWIG to get a better sense for how types are
managed.
-10.9 Typemaps and overloading
+10.9 Typemaps and overloading
In many target languages, SWIG fully supports C++ overloaded methods and functions. For example,