summaryrefslogtreecommitdiffstats
path: root/CommandLineArguments.hxx.in
diff options
context:
space:
mode:
authorKWSys Robot <kwrobot@kitware.com>2013-05-06 14:29:55 (GMT)
committerBrad King <brad.king@kitware.com>2013-05-07 12:38:05 (GMT)
commitd0cdc687353cbba0ab844a360a23c71945c8370b (patch)
tree5bd5f53562ccea42a712c6b544c20579fd461c2c /CommandLineArguments.hxx.in
parent327c982faf6a9f119b6547c099a6bbf2ee82e517 (diff)
downloadCMake-d0cdc687353cbba0ab844a360a23c71945c8370b.zip
CMake-d0cdc687353cbba0ab844a360a23c71945c8370b.tar.gz
CMake-d0cdc687353cbba0ab844a360a23c71945c8370b.tar.bz2
KWSys 2013-05-06 (f4928d44)
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ f4928d44 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 709fb5c1..f4928d44 Andreas Mohr (1): f4928d44 Fix spelling and typos in comments and method documentation Change-Id: I64109c176370a9f10a22da21bc81bd9306a80431
Diffstat (limited to 'CommandLineArguments.hxx.in')
-rw-r--r--CommandLineArguments.hxx.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/CommandLineArguments.hxx.in b/CommandLineArguments.hxx.in
index 68e9600..cbf6ee3 100644
--- a/CommandLineArguments.hxx.in
+++ b/CommandLineArguments.hxx.in
@@ -44,7 +44,7 @@ struct CommandLineArgumentsCallbackStructure;
*
* For the variable interface you associate variable with each argument. When
* the argument is specified, the variable is set to the specified value casted
- * to the apropriate type. For boolean (NO_ARGUMENT), the value is "1".
+ * to the appropriate type. For boolean (NO_ARGUMENT), the value is "1".
*
* Both interfaces can be used at the same time.
*
@@ -99,7 +99,7 @@ public:
STRING_TYPE, // The variable is string (char*)
STL_STRING_TYPE, // The variable is string (char*)
VECTOR_INT_TYPE, // The variable is integer (int)
- VECTOR_BOOL_TYPE, // The vairable is boolean (bool)
+ VECTOR_BOOL_TYPE, // The variable is boolean (bool)
VECTOR_DOUBLE_TYPE, // The variable is float (double)
VECTOR_STRING_TYPE, // The variable is string (char*)
VECTOR_STL_STRING_TYPE, // The variable is string (char*)
@@ -128,7 +128,7 @@ public:
void ProcessArgument(const char* arg);
/**
- * This method will parse arguments and call apropriate methods.
+ * This method will parse arguments and call appropriate methods.
*/
int Parse();
@@ -144,7 +144,7 @@ public:
/**
* Add handler for argument which is going to set the variable to the
* specified value. If the argument is specified, the option is casted to the
- * apropriate type.
+ * appropriate type.
*/
void AddArgument(const char* argument, ArgumentTypeEnum type,
bool* variable, const char* help);
@@ -160,7 +160,7 @@ public:
/**
* Add handler for argument which is going to set the variable to the
* specified value. If the argument is specified, the option is casted to the
- * apropriate type. This will handle the multi argument values.
+ * appropriate type. This will handle the multi argument values.
*/
void AddArgument(const char* argument, ArgumentTypeEnum type,
kwsys_stl::vector<bool>* variable, const char* help);