Fix spelling in various places
This commit is contained in:
parent
fbf59878d6
commit
3c6da8d2b0
|
@ -1,3 +1,5 @@
|
||||||
|
[comment]: \page README Readme
|
||||||
|
|
||||||
# libeismultiplexer
|
# libeismultiplexer
|
||||||
|
|
||||||
libeismultiplexer is a shared library that allows you to control EISmultiplexer devices.
|
libeismultiplexer is a shared library that allows you to control EISmultiplexer devices.
|
||||||
|
|
|
@ -864,7 +864,7 @@ WARN_LOGFILE =
|
||||||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
||||||
# Note: If this tag is empty the current directory is searched.
|
# Note: If this tag is empty the current directory is searched.
|
||||||
|
|
||||||
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/eismultiplexer.h @CMAKE_CURRENT_SOURCE_DIR@/doc/mainpage.txt
|
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/eismultiplexer.h @CMAKE_CURRENT_SOURCE_DIR@/doc/mainpage.txt @CMAKE_CURRENT_SOURCE_DIR@/README.md
|
||||||
|
|
||||||
# This tag can be used to specify the character encoding of the source files
|
# This tag can be used to specify the character encoding of the source files
|
||||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*! \mainpage libeismultiplexer manual
|
/*! \mainpage libeismultiplexer manual
|
||||||
|
|
||||||
libeismultiplexer is a shared library that allows you to control EISmultiplexer devices
|
libeismultiplexer is a shared library that allows you to control EISmultiplexer devices. For build instructions please see the \ref README.
|
||||||
|
|
||||||
An API reference can be found here: \subpage API
|
An API reference can be found here: \subpage API
|
||||||
|
|
||||||
|
|
|
@ -35,14 +35,14 @@
|
||||||
|
|
||||||
const char *argp_program_version = "eismulitplexer_cli";
|
const char *argp_program_version = "eismulitplexer_cli";
|
||||||
const char *argp_program_bug_address = "<carl@uvos.xyz>";
|
const char *argp_program_bug_address = "<carl@uvos.xyz>";
|
||||||
static char doc[] = "Applicaion to control eismultiplexer devices";
|
static char doc[] = "Application to control eismultiplexer devices";
|
||||||
static char args_doc[] = "COMMAND";
|
static char args_doc[] = "COMMAND";
|
||||||
|
|
||||||
static struct argp_option options[] =
|
static struct argp_option options[] =
|
||||||
{
|
{
|
||||||
{"interactive", 'i', 0, 0, "run in interactive mode" },
|
{"interactive", 'i', 0, 0, "run in interactive mode" },
|
||||||
{"pipe", 'p', 0, 0, "run in pipe mode" },
|
{"pipe", 'p', 0, 0, "run in pipe mode" },
|
||||||
{"serial", 's', "[NUMMBER]", 0, "serial number of device to connect to"},
|
{"serial", 's', "[NUMBER]", 0, "serial number of device to connect to"},
|
||||||
{"list", 'l', 0, 0, "list commands"},
|
{"list", 'l', 0, 0, "list commands"},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue