[project @ 2003-08-04 14:47:37 by panne]
[ghc-base.git] / System / Console / GetOpt.hs
index cc55a70..0062b02 100644 (file)
@@ -66,7 +66,7 @@ The arguments to 'Option' are:
 
 * list of short option characters
 
-* list of long option strings (without "--")
+* list of long option strings (without \"--\")
 
 * argument descriptor
 
@@ -131,7 +131,7 @@ Process the command-line, and return the list of values that matched
 * The option descriptions (see 'OptDescr')
 
 * The actual command line arguments (presumably got from 
-  'System.Console.Environment.getArgs').
+  'System.Environment.getArgs').
 
 'getOpt' returns a triple, consisting of the argument values, a list
 of options that didn\'t match, and a list of error messages.
@@ -262,7 +262,7 @@ test order cmdline = case getOpt order options cmdline of
 
 {- $example
 
-To hopefully illuminate the role of the different "GetOpt" data
+To hopefully illuminate the role of the different data
 structures, here\'s the command-line options for a (very simple)
 compiler: