diff --git a/docs/manual.html b/docs/manual.html index 411aaf8..dd5ba7f 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -87,18 +87,18 @@ Descriptions

Basic Usage

There are a few key classes to be aware of. The first is the -CmdLine (command line) class. This is the class that parses +CmdLine (command line) class. This class parses the command line passed to it according to the arguments that it contains. Arguments are separate objects that are added to the -CmdLine object one at a time. There are five types of -arguments, ValueArg, UnlabeledValueArg, +CmdLine object one at a time. The five types of +arguments are, ValueArg, UnlabeledValueArg, SwitchArg, MultiArg and UnlabeledMultiArg. -These are templatized classes meaning they can be defined to parse -a value of any type**. Once the -arguments are added to the command line object, the command line is -parsed which assigns the data on the command line to the specific -argument objects. The values are accessed by calls to the -getValue() methods of the argument objects.
+These classes are templatized, which means they can be defined to parse +a value of any type**. Once you add the +arguments to the CmdLine object, it parses the command line +and assigns the data it finds to the specific argument objects it +contains. Your program accesses the values parsed by +calls to the getValue() methods of the argument objects.

Here is a simple example ...