Fix spelling in various places

This commit is contained in:
Carl Philipp Klemm 2024-01-09 14:13:41 +01:00
parent fbf59878d6
commit 3c6da8d2b0
4 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,5 @@
[comment]: \page README Readme
# libeismultiplexer
libeismultiplexer is a shared library that allows you to control EISmultiplexer devices.

View file

@ -864,7 +864,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# 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
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View file

@ -1,6 +1,6 @@
/*! \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

View file

@ -35,14 +35,14 @@
const char *argp_program_version = "eismulitplexer_cli";
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 struct argp_option options[] =
{
{"interactive", 'i', 0, 0, "run in interactive 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"},
{0}
};