Skip to content

Commit

Permalink
spelling fixes (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
ustorbeck authored Jul 31, 2024
1 parent de3bcba commit b87f7e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/CONFIG-KEYS
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ DEFAULT: "true"
KEY: syslog
VALUES: ["true" or "false"]
DESC: Enabling/disabling Syslog logging. If not specified the default facility is "LOG_USER".
DEFAULT: "flase"
DEFAULT: "false"

KEY: syslog_facility
VALUES: ["LOG_DAEMON" or "LOG_USER" or "LOG_LOCAL(0..7)"]
Expand Down
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ if [ "${h_option_flag}" -eq 1 ]; then
fi

if [ "${v_option_flag}" -eq 0 ]; then
die "error - mind your options/arguments - [ -h ] to know more" "${err_validating_input}"
die "error - mind your options/arguments - [ -h ] to know more" "${err_validating_input}"
fi

is_valid_mdt_version "${mdt_version}"
Expand All @@ -842,12 +842,12 @@ fi

# both bin & lib to 1: invalid
if [ "${b_option_flag}" -eq 1 ] && [ "${l_option_flag}" -eq 1 ]; then
die "error - mind your options/arguments - [ -h ] to know more" "${err_validating_input}"
die "error - mind your options/arguments - [ -h ] to know more" "${err_validating_input}"
fi

# both bin & lib to 0: invalid
if [ "${b_option_flag}" -eq 0 ] && [ "${l_option_flag}" -eq 0 ]; then
die "error - mind your options/arguments - [ -h ] to know more" "${err_validating_input}"
die "error - mind your options/arguments - [ -h ] to know more" "${err_validating_input}"
fi

if [ "${b_option_flag}" -eq 1 ] || [ "${l_option_flag}" -eq 1 ]; then
Expand Down
2 changes: 1 addition & 1 deletion src/utils/cfg_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ bool KafkaCfgHandler::lookup_kafka_parameters(const std::string &cfg_path,
params.clear();
}

// Kafka arameters evaluation
// Kafka parameters evaluation
bool topic = kafka_params.exists("topic");
if (topic == true) {
libconfig::Setting &topic = kafka_params.lookup("topic");
Expand Down

0 comments on commit b87f7e6

Please sign in to comment.