Updated runtime files.
diff --git a/runtime/doc/os_win32.txt b/runtime/doc/os_win32.txt
index 7f224f8..92e85c7 100644
--- a/runtime/doc/os_win32.txt
+++ b/runtime/doc/os_win32.txt
@@ -1,4 +1,4 @@
-*os_win32.txt*  For Vim version 7.3.  Last change: 2010 Dec 19
+*os_win32.txt*  For Vim version 7.3.  Last change: 2011 May 28
 
 
 		  VIM REFERENCE MANUAL    by George Reilly
@@ -321,13 +321,14 @@
 
 Q. How do I avoid getting a window for programs that I run asynchronously?
 A. You have two possible solutions depending on what exactly do you want:
-   1) You may use the /min flag that would run program in minimized state with
-      no other changes. It will work equally for console and GUI applications.
-   2) You can use /b flag to run console applications without creating a
+   1) You may use the /min flag in order to run program in a minimized state
+      with no other changes. It will work equally for console and GUI
+      applications.
+   2) You can use the /b flag to run console applications without creating a
       console window for them (GUI applications are not affected). But you
-      should use this flag only if application you run doesn't require any
-      input.  Otherwise it will get an EOF error because it's input stream
-      (stdin) would be redirected to \\.\NUL (stdour and stderr too).
+      should use this flag only if the application you run doesn't require any
+      input.  Otherwise it will get an EOF error because its input stream
+      (stdin) would be redirected to \\.\NUL (stdoud and stderr too).
 
    Example for a console application, run Exuberant ctags: >
         :!start /min ctags -R .