From 88a3a754b0a3526852a9331a57fc7d59940d52ea Mon Sep 17 00:00:00 2001 From: Claus Assmann Date: Fri, 15 Mar 2013 20:32:03 +0000 Subject: [PATCH] Fix typos in FixHRSpikes .. just changes to text --- src/FixHRSpikes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FixHRSpikes.cpp b/src/FixHRSpikes.cpp index 81b289446..8a0a1c915 100644 --- a/src/FixHRSpikes.cpp +++ b/src/FixHRSpikes.cpp @@ -65,7 +65,7 @@ class FixHRSpikesConfig : public DataProcessorConfig QString explain() { return(QString(tr("Occasionally heart rate sensors will erroneously " "report high values for heart rate or drop out (0). " - "This function will look for spikes anddropouts " + "This function will look for spikes and dropouts " "in heart rate data and replace the erroneous data " "by interpolating the data from either " "side of the point in question\n\n" @@ -134,7 +134,7 @@ FixHRSpikes::postProcess(RideFile *ride, DataProcessorConfig *config=0) ride->command->startLUW("Fix Spikes in Recording"); // Start LogicalUnitOfWork - int lastgood = -1; // where did we last have decent GPS data? + int lastgood = -1; // where did we last have decent HR data? for (int i=0; idataPoints().count(); i++) { // If we have a non-zero HR that is not above the specified MAX if(ride->dataPoints()[i]->hr > 0 and ride->dataPoints()[i]->hr <= max) {