Correct spelling errors.

pull/956/head
Fredrik Öhrström 2023-05-08 14:38:39 +02:00
rodzic b0bca78c78
commit 88a811d434
7 zmienionych plików z 9 dodań i 9 usunięć

Wyświetl plik

@ -148,7 +148,7 @@ namespace
addNumericFieldWithExtractor(
"max_flow",
"The maxium flow recorded during previous period.",
"The maximum flow recorded during previous period.",
DEFAULT_PRINT_PROPERTIES,
Quantity::Flow,
VifScaling::Auto,
@ -172,7 +172,7 @@ namespace
addNumericFieldWithExtractor(
"max_external_temperature",
"The maxium temperature recorded during previous period.",
"The maximum temperature recorded during previous period.",
DEFAULT_PRINT_PROPERTIES,
Quantity::Temperature,
VifScaling::Auto,
@ -196,7 +196,7 @@ namespace
addNumericFieldWithExtractor(
"max_flow",
"The maxium flow recorded during previous period.",
"The maximum flow recorded during previous period.",
DEFAULT_PRINT_PROPERTIES,
Quantity::Flow,
VifScaling::Auto,

Wyświetl plik

@ -52,7 +52,7 @@ namespace
addNumericFieldWithExtractor(
"max_flow",
"The maxium flow recorded during previous period.",
"The maximum flow recorded during previous period.",
DEFAULT_PRINT_PROPERTIES,
Quantity::Flow,
VifScaling::Auto,

Wyświetl plik

@ -85,7 +85,7 @@ namespace
addNumericFieldWithExtractor(
"min_pressure",
"The minumum pressure measured during ?.",
"The minimum pressure measured during ?.",
DEFAULT_PRINT_PROPERTIES,
Quantity::Pressure,
VifScaling::Auto,

Wyświetl plik

@ -117,7 +117,7 @@ namespace
addStringFieldWithExtractor(
"error_date",
"The date the error occured at. If no error, reads 2127-15-31 (FFFF).",
"The date the error occurred at. If no error, reads 2127-15-31 (FFFF).",
DEFAULT_PRINT_PROPERTIES,
FieldMatcher::build()
.set(MeasurementType::AtError)

Wyświetl plik

@ -116,7 +116,7 @@ namespace
addNumericFieldWithExtractor(
"max_flow",
"The maxium flow recorded during previous period.",
"The maximum flow recorded during previous period.",
DEFAULT_PRINT_PROPERTIES,
Quantity::Flow,
VifScaling::Auto,

Wyświetl plik

@ -120,7 +120,7 @@ namespace
addNumericFieldWithExtractor(
"error",
"The date the error occured at. If no error, reads 2127-15-31 (FFFF).",
"The date the error occurred at. If no error, reads 2127-15-31 (FFFF).",
DEFAULT_PRINT_PROPERTIES,
Quantity::PointInTime,
VifScaling::Auto,

Wyświetl plik

@ -766,7 +766,7 @@ FrameStatus WMBusIM871aIM170A::checkIM871AFrame(vector<uchar> &data,
int ctrlbits = (data[1] & 0xf0) >> 4;
if (ctrlbits & 1) {
debug("(im871a) error in frame, bit 1 shoud not be set in data[1]\n");
debug("(im871a) error in frame, bit 1 should not be set in data[1]\n");
return ErrorInFrame; // Bit 1 is reserved, we do not expect it....
}
bool has_timestamp = ((ctrlbits&2)==2);