Minor doc improvements
authorAlpar Juttner <alpar@cs.elte.hu>
Tue, 22 Jan 2008 16:03:41 +0000
changeset 86eba5222bb6f5
parent 85 3453d20a82cd
child 87 81e138275860
Minor doc improvements
lemon/arg_parser.h
     1.1 --- a/lemon/arg_parser.h	Tue Jan 22 15:55:49 2008 +0000
     1.2 +++ b/lemon/arg_parser.h	Tue Jan 22 16:03:41 2008 +0000
     1.3 @@ -121,7 +121,7 @@
     1.4  		    const std::string &help,
     1.5  		    int value=0, bool obl=false);
     1.6  
     1.7 -    ///Add a new floating type option
     1.8 +    ///Add a new floating point type option
     1.9  
    1.10      ///\param name The name of the option. The leading '-' must be omitted.
    1.11      ///\param help A help string.
    1.12 @@ -296,8 +296,8 @@
    1.13      ///Magic type for operator[]
    1.14      
    1.15      ///This is the type of the return value of ArgParser::operator[]().
    1.16 -    ///It automatically converts to int, double, bool or std::string, if it
    1.17 -    ///match the type of the option, otherwise it throws an exception.
    1.18 +    ///It automatically converts to int, double, bool or std::string if
    1.19 +    ///the type of the option matches, otherwise it throws an exception.
    1.20      ///(i.e. it performs runtime type checking).
    1.21      class RefType 
    1.22      {