Commit a028f23e authored by Brad Hards's avatar Brad Hards Committed by Rusty Russell

opt: spelling fixes.

parent 2488a379
...@@ -32,7 +32,7 @@ struct opt_table { ...@@ -32,7 +32,7 @@ struct opt_table {
* @arg: the argument to hand to @cb. * @arg: the argument to hand to @cb.
* @desc: the description for opt_usage(), or opt_hidden. * @desc: the description for opt_usage(), or opt_hidden.
* *
* This is a typesafe wrapper for intializing a struct opt_table. The callback * This is a typesafe wrapper for initializing a struct opt_table. The callback
* of type "char *cb(type *)", "char *cb(const type *)" or "char *cb(void *)", * of type "char *cb(type *)", "char *cb(const type *)" or "char *cb(void *)",
* where "type" is the type of the @arg argument. * where "type" is the type of the @arg argument.
* *
...@@ -42,7 +42,7 @@ struct opt_table { ...@@ -42,7 +42,7 @@ struct opt_table {
* *
* Any number of equivalent short or long options can be listed in @names, * Any number of equivalent short or long options can be listed in @names,
* separated by '|'. Short options are a single hyphen followed by a single * separated by '|'. Short options are a single hyphen followed by a single
* character, long options are two hypens followed by one or more characters. * character, long options are two hyphens followed by one or more characters.
* *
* See Also: * See Also:
* OPT_WITH_ARG() * OPT_WITH_ARG()
...@@ -58,7 +58,7 @@ struct opt_table { ...@@ -58,7 +58,7 @@ struct opt_table {
* @arg: the argument to hand to @cb and @show * @arg: the argument to hand to @cb and @show
* @desc: the description for opt_usage(), or opt_hidden. * @desc: the description for opt_usage(), or opt_hidden.
* *
* This is a typesafe wrapper for intializing a struct opt_table. The callback * This is a typesafe wrapper for initializing a struct opt_table. The callback
* is of type "char *cb(const char *, type *)", * is of type "char *cb(const char *, type *)",
* "char *cb(const char *, const type *)" or "char *cb(const char *, void *)", * "char *cb(const char *, const type *)" or "char *cb(const char *, void *)",
* where "type" is the type of the @arg argument. The first argument to the * where "type" is the type of the @arg argument. The first argument to the
...@@ -71,7 +71,7 @@ struct opt_table { ...@@ -71,7 +71,7 @@ struct opt_table {
* *
* Any number of equivalent short or long options can be listed in @names, * Any number of equivalent short or long options can be listed in @names,
* separated by '|'. Short options are a single hyphen followed by a single * separated by '|'. Short options are a single hyphen followed by a single
* character, long options are two hypens followed by one or more characters. * character, long options are two hyphens followed by one or more characters.
* A space or equals in @names is ignored for parsing, and only used * A space or equals in @names is ignored for parsing, and only used
* for printing the usage. * for printing the usage.
* *
...@@ -131,7 +131,7 @@ void opt_register_table(const struct opt_table table[], const char *desc); ...@@ -131,7 +131,7 @@ void opt_register_table(const struct opt_table table[], const char *desc);
* @names: the names of the option eg. "--foo", "-f" or "--foo|-f|--foobar". * @names: the names of the option eg. "--foo", "-f" or "--foo|-f|--foobar".
* @cb: the callback when the option is found. * @cb: the callback when the option is found.
* @arg: the argument to hand to @cb. * @arg: the argument to hand to @cb.
* @desc: the verbose desction of the option (for opt_usage()), or NULL. * @desc: the verbose description of the option (for opt_usage()), or NULL.
* *
* This is used for registering a single commandline option which takes * This is used for registering a single commandline option which takes
* no argument. * no argument.
...@@ -153,7 +153,7 @@ void opt_register_table(const struct opt_table table[], const char *desc); ...@@ -153,7 +153,7 @@ void opt_register_table(const struct opt_table table[], const char *desc);
* @cb: the callback when the option is found. * @cb: the callback when the option is found.
* @show: the callback to print the value in get_usage (or NULL) * @show: the callback to print the value in get_usage (or NULL)
* @arg: the argument to hand to @cb. * @arg: the argument to hand to @cb.
* @desc: the verbose desction of the option (for opt_usage()), or NULL. * @desc: the verbose description of the option (for opt_usage()), or NULL.
* *
* This is used for registering a single commandline option which takes * This is used for registering a single commandline option which takes
* an argument. * an argument.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment