diff --git a/docs/changes.txt b/docs/changes.txt
index 4ce1d0e3b3..3af4b746b9 100644
--- a/docs/changes.txt
+++ b/docs/changes.txt
@@ -13,6 +13,8 @@ wxMSW:
- Various bug fixes
- Added wxCHMHelpController, for invoking MS HTML Help
files. This works under VC++ only
+- Modal dialog handling improved
+- Printer dialog now modal
wxGTK:
diff --git a/docs/html/news.htm b/docs/html/news.htm
index 48dfaad7ea..f2adc22645 100644
--- a/docs/html/news.htm
+++ b/docs/html/news.htm
@@ -18,6 +18,13 @@ News
+
+
+
+- wxWindows 2.1.16 contains fixes
+for wxGTK, wxMSW and wxMotif. It is hoped that this is the last release before the stable 2.2 version.
+
+
diff --git a/docs/latex/wx/calctrl.tex b/docs/latex/wx/calctrl.tex
index ca675f48a1..1142228f1f 100644
--- a/docs/latex/wx/calctrl.tex
+++ b/docs/latex/wx/calctrl.tex
@@ -445,3 +445,4 @@ Returns the date. This function may be called for all event types except
Returns the week day on which the user clicked in
{\tt EVT\_CALENDAR\_WEEKDAY\_CLICKED} handler. It doesn't make sense to call
this function in other handlers.
+
diff --git a/docs/latex/wx/cmdlpars.tex b/docs/latex/wx/cmdlpars.tex
index a87b4ac4ca..d9b3b8c378 100644
--- a/docs/latex/wx/cmdlpars.tex
+++ b/docs/latex/wx/cmdlpars.tex
@@ -442,3 +442,4 @@ Returns the value of Nth parameter (as string only for now).
\wxheading{See also}
\helpref{GetParamCount}{wxcmdlineparsergetparamcount}
+
diff --git a/docs/latex/wx/csconv.tex b/docs/latex/wx/csconv.tex
index c1cf85268a..2d09197bf2 100644
--- a/docs/latex/wx/csconv.tex
+++ b/docs/latex/wx/csconv.tex
@@ -3,7 +3,6 @@
% ../include/wx/strconv.h at 25/Mar/00 10:20:56
%
-
\section{\class{wxCSConv}}\label{wxcsconv}
This class converts between any character sets and Unicode.
@@ -26,7 +25,6 @@ default user character set.
\latexignore{\rtfignore{\wxheading{Members}}}
-
\membersection{wxCSConv::wxCSConv}\label{wxcsconvwxcsconv}
\func{}{wxCSConv}{\param{const wxChar* }{charset}}
@@ -59,3 +57,4 @@ Converts from the selected character set to Unicode. Returns the size of the des
\constfunc{size\_t}{WC2MB}{\param{char* }{buf}, \param{const wchar\_t* }{psz}, \param{size\_t }{n}}
Converts from Unicode to the selected character set. Returns the size of the destination buffer.
+
diff --git a/docs/latex/wx/spinevt.tex b/docs/latex/wx/spinevt.tex
index 1f6ef1b8af..6b063c96fb 100644
--- a/docs/latex/wx/spinevt.tex
+++ b/docs/latex/wx/spinevt.tex
@@ -48,3 +48,4 @@ Retrieve the current spin button or control value.
\func{void}{SetPosition}{\param{int }{pos}}
Set the value associated with the event.
+
diff --git a/docs/latex/wx/tmbconv.tex b/docs/latex/wx/tmbconv.tex
index a095fae778..4401bfa99b 100644
--- a/docs/latex/wx/tmbconv.tex
+++ b/docs/latex/wx/tmbconv.tex
@@ -174,3 +174,4 @@ If a conversion had taken place in cWX2MB (i.e. in a Unicode build),
the buffer will be deallocated as soon as tmp_buf goes out of scope.
(The macro wxWX2MBbuf reflects the correct return value of cWX2MB
(either char* or wxCharBuffer), except for the const.)
+
diff --git a/docs/latex/wx/tstring.tex b/docs/latex/wx/tstring.tex
index 48910fe69a..e57912e91a 100644
--- a/docs/latex/wx/tstring.tex
+++ b/docs/latex/wx/tstring.tex
@@ -60,8 +60,8 @@ wxString internally by wxWindows.
However, there are several problems as well. The most important one is probably
that there are often several functions to do exactly the same thing: for
example, to get the length of the string either one of
-\helpref{length()}{wxstringlength}, \helpref{Len()}{wxstringlen} or
-\helpref{Length()}{wxstringLength} may be used. The first function, as almost
+length(), \helpref{Len()}{wxstringlen} or
+\helpref{Length()}{wxstringlength} may be used. The first function, as almost
all the other functions in lowercase, is std::string compatible. The second one
is "native" wxString version and the last one is wxWindows 1.xx way. So the
question is: which one is better to use? And the answer is that:
diff --git a/docs/latex/wx/tunicode.tex b/docs/latex/wx/tunicode.tex
index a618ccdbc9..718c25d6fb 100644
--- a/docs/latex/wx/tunicode.tex
+++ b/docs/latex/wx/tunicode.tex
@@ -169,3 +169,4 @@ This will allow your program to perform conversions between Unicode strings and
ANSI ones (\helpref{wxEncodingConverter}{wxencodingconverter} depends on this
partially) and construct wxString objects from Unicode strings (presumably read
from some external file or elsewhere).
+
diff --git a/docs/latex/wx/window.tex b/docs/latex/wx/window.tex
index a0c3faf060..e9647edbbc 100644
--- a/docs/latex/wx/window.tex
+++ b/docs/latex/wx/window.tex
@@ -42,9 +42,9 @@ the application-wide policy is for 3D controls. Windows only.}
wants to get all char events - even for keys like TAB or ENTER which are
usually used for dialog navigation and which wouldn't be generated without
this style}
-\twocolitem{\windowstyle{wxNO\_FULLREPAINT\_ON\_RESIZE}}{Disables repainting
+\twocolitem{\windowstyle{wxNO\_FULL\_REPAINT\_ON\_RESIZE}}{Disables repainting
the window completely when its size is changed - you will have to repaint the
-new window area manually if you use style. Currently only has effect for
+new window area manually if you use this style. Currently only has an effect for
Windows.}
\twocolitem{\windowstyle{wxVSCROLL}}{Use this style to enable a vertical scrollbar. (Still used?) }
\twocolitem{\windowstyle{wxHSCROLL}}{Use this style to enable a horizontal scrollbar. (Still used?) }
diff --git a/docs/latex/wx/wxstring.tex b/docs/latex/wx/wxstring.tex
index f249c0c055..61a1f102a1 100644
--- a/docs/latex/wx/wxstring.tex
+++ b/docs/latex/wx/wxstring.tex
@@ -203,9 +203,9 @@ Other string functions.
\helpref{Pad}{wxstringpad}\\
\helpref{Truncate}{wxstringtruncate}
-\membersection{wxWindows 1.xx compatiblity functions}
+\membersection{wxWindows 1.xx compatibility functions}
-These functiosn are deprecated, please consider using new wxWindows 2.0
+These functions are deprecated, please consider using new wxWindows 2.0
functions instead of them (or, even better, std::string compatible variants).
\helpref{SubString}{wxstringsubstring}\\
diff --git a/docs/readme.txt b/docs/readme.txt
index e39545b01a..76742dd2a6 100644
--- a/docs/readme.txt
+++ b/docs/readme.txt
@@ -51,10 +51,10 @@ Files
-----
The distribution is available in archive formats appropriate to the
-target system. Documentation is available mainly in zip format,
-and in .tgz format where appropriate. Some add-on libraries (such
-as the Object Graphics Library) are available in zip form only.
-In the following, x.y.z represents the current version number.
+target system. Documentation is available mainly in zip format.
+Some add-on libraries (such as the Object Graphics Library) are
+available in zip form only. In the following, x.y.z represents
+the current version number.
wxWindows for GTK distribution
------------------------------
@@ -216,5 +216,5 @@ web site) or contact Julian Smart .
Good luck!
-The wxWindows Team, 23rd May, 2000
+The wxWindows Team, 24th May, 2000