From 88a811d4344d3bac29b7ca515f267d52f5469070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20=C3=96hrstr=C3=B6m?= Date: Mon, 8 May 2023 14:38:39 +0200 Subject: [PATCH] Correct spelling errors. --- src/driver_flowiq2200.cc | 6 +++--- src/driver_iperl.cc | 2 +- src/driver_kampress.cc | 2 +- src/driver_lse_07_17.cc | 2 +- src/driver_multical21.cc | 2 +- src/driver_qwater.cc | 2 +- src/wmbus_im871a.cc | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/driver_flowiq2200.cc b/src/driver_flowiq2200.cc index 877f936..8b95b3c 100644 --- a/src/driver_flowiq2200.cc +++ b/src/driver_flowiq2200.cc @@ -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, diff --git a/src/driver_iperl.cc b/src/driver_iperl.cc index 1c2232c..a05231a 100644 --- a/src/driver_iperl.cc +++ b/src/driver_iperl.cc @@ -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, diff --git a/src/driver_kampress.cc b/src/driver_kampress.cc index d0f07d4..d464ec3 100644 --- a/src/driver_kampress.cc +++ b/src/driver_kampress.cc @@ -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, diff --git a/src/driver_lse_07_17.cc b/src/driver_lse_07_17.cc index bbe133c..ae5c8d4 100644 --- a/src/driver_lse_07_17.cc +++ b/src/driver_lse_07_17.cc @@ -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) diff --git a/src/driver_multical21.cc b/src/driver_multical21.cc index e55bd56..cfee124 100644 --- a/src/driver_multical21.cc +++ b/src/driver_multical21.cc @@ -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, diff --git a/src/driver_qwater.cc b/src/driver_qwater.cc index 30ef661..e7649d5 100644 --- a/src/driver_qwater.cc +++ b/src/driver_qwater.cc @@ -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, diff --git a/src/wmbus_im871a.cc b/src/wmbus_im871a.cc index 6012f98..78412a8 100644 --- a/src/wmbus_im871a.cc +++ b/src/wmbus_im871a.cc @@ -766,7 +766,7 @@ FrameStatus WMBusIM871aIM170A::checkIM871AFrame(vector &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);