diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.h b/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.h
index 6e357bf..a5aebf3 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.h
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/aggregator/MeanAggregator.h
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2015, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#ifndef MEANAGGREGATOR_H
#define MEANAGGREGATOR_H
@@ -44,7 +44,8 @@ public:
virtual QString toString() const override { return "MeanAggregator"; }
- virtual QString getDescription() const override { return "Aggregates data based on the mean value"; }
+ virtual QString getDescription() const override
+ { return "Aggregates data based on the mean value"; }
};
}