summaryrefslogtreecommitdiff
path: root/ace/Get_Opt.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-09-24 06:30:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-09-24 06:30:24 +0000
commite402980de5fff23a88db6252ee783a5224a13a64 (patch)
treee9eb6cbb1246839089ac3e110a09ab1f78513e3c /ace/Get_Opt.h
parentc79328e9c57221986bf319f13433bd3ab7ba1596 (diff)
downloadATCD-e402980de5fff23a88db6252ee783a5224a13a64.tar.gz
ChangeLogTag: Tue Sep 24 06:29:45 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Get_Opt.h')
-rw-r--r--ace/Get_Opt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Get_Opt.h b/ace/Get_Opt.h
index 1513d1c76ad..a4558f2b447 100644
--- a/ace/Get_Opt.h
+++ b/ace/Get_Opt.h
@@ -46,7 +46,7 @@ public:
enum
{
/**
- * @arg REQUIRE_ORDER means that processing stops and @c EOF is
+ * REQUIRE_ORDER means that processing stops and @c EOF is
* returned as soon as a non-option argument is found. @c opt_ind()
* will return the index of the next @a argv element so the program
* can continue processing the rest of the @a argv elements.
@@ -54,7 +54,7 @@ public:
REQUIRE_ORDER = 1,
/**
- * @arg PERMUTE_ARGS means the @a argv elements are reordered dynamically
+ * PERMUTE_ARGS means the @a argv elements are reordered dynamically
* (permuted) so that all options appear first. When the elements are
* permuted, the order of the options and the following arguments are
* maintained. When the last option has been processed, @c EOF is
@@ -64,7 +64,7 @@ public:
PERMUTE_ARGS = 2,
/**
- * @arg RETURN_IN_ORDER means each @a argv element is processed in the
+ * RETURN_IN_ORDER means each @a argv element is processed in the
* order is it seen. If the element is not recognized as an option, '1'
* is returned and @c opt_arg() refers to the @a argv element found.
*/