Skip to content

Commit 43ee697

Browse files
committed
spelling fixes
1 parent de3bcba commit 43ee697

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/CONFIG-KEYS

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ DEFAULT: "true"
194194
KEY: syslog
195195
VALUES: ["true" or "false"]
196196
DESC: Enabling/disabling Syslog logging. If not specified the default facility is "LOG_USER".
197-
DEFAULT: "flase"
197+
DEFAULT: "false"
198198

199199
KEY: syslog_facility
200200
VALUES: ["LOG_DAEMON" or "LOG_USER" or "LOG_LOCAL(0..7)"]

install.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ if [ "${h_option_flag}" -eq 1 ]; then
828828
fi
829829

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

834834
is_valid_mdt_version "${mdt_version}"
@@ -842,12 +842,12 @@ fi
842842

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

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

853853
if [ "${b_option_flag}" -eq 1 ] || [ "${l_option_flag}" -eq 1 ]; then

src/utils/cfg_handler.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ bool KafkaCfgHandler::lookup_kafka_parameters(const std::string &cfg_path,
833833
params.clear();
834834
}
835835

836-
// Kafka arameters evaluation
836+
// Kafka parameters evaluation
837837
bool topic = kafka_params.exists("topic");
838838
if (topic == true) {
839839
libconfig::Setting &topic = kafka_params.lookup("topic");

0 commit comments

Comments
 (0)