]> git.saurik.com Git - wxWidgets.git/commitdiff
no changes, just fix a typo
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 May 2008 00:34:43 +0000 (00:34 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 May 2008 00:34:43 +0000 (00:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53548 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/cmdline.h

index 11d7b27d758a599a9c9a4b07a5aef35dc949e3ff..2cebdf9e3e03f7d9ee53b98981d371b1273340ff 100644 (file)
@@ -114,8 +114,8 @@ struct wxCmdLineEntryDesc
                  described below. For example, @c "-v" might be a switch
                  meaning "enable verbose mode".
     - @b option: Option for us here is something which comes with a value 0
-                 unlike a switch. For example, @c -o:filename might be an
-                 option for specifing the name of the output file.
+                 unlike a switch. For example, @c -o: @c filename might be an
+                 option for specifying the name of the output file.
     - @b parameter: This is a required program argument.
 
 
@@ -161,8 +161,8 @@ struct wxCmdLineEntryDesc
 
     Another global option is the set of characters which may be used to start
     an option (otherwise, the word on the command line is assumed to be a
-    parameter). Under Unix, "-" is always used, but Windows has at least two
-    common choices for this: "-" and "/". Some programs also use "+". The
+    parameter). Under Unix, @c "-" is always used, but Windows has at least two
+    common choices for this: @c "-" and @c "/". Some programs also use "+". The
     default is to use what suits most the current platform, but may be changed
     with SetSwitchChars() method.
 
@@ -240,8 +240,7 @@ public:
         Specifies both the command line (in Unix format) and the
         @ref SetDesc() "command line description".
     */
-    wxCmdLineParser(const wxCmdLineEntryDesc* desc, int argc,
-                    char** argv);
+    wxCmdLineParser(const wxCmdLineEntryDesc* desc, int argc, char** argv);
 
     /**
         Specifies both the command line (in Windows format) and the