From e5b8bb1d686e4d21b28165ba7f5aed7639daae90 Mon Sep 17 00:00:00 2001 From: Daniel Pelanek Date: Wed, 19 Jun 2024 11:37:07 +0200 Subject: [PATCH] editor-config fix --- examples/aggregatedFileExample.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/aggregatedFileExample.cpp b/examples/aggregatedFileExample.cpp index a89aef8..f81cfa0 100644 --- a/examples/aggregatedFileExample.cpp +++ b/examples/aggregatedFileExample.cpp @@ -41,7 +41,7 @@ int main() { = {[]() { return returnValue(5); }, nullptr}; - // It is better to keep the files in another directory and not + // It is better to keep the files in another directory and not // aggregate them straight from root dir. auto aggFileDir = telemetryRootNode->addDir("aggDir"); auto file1 = aggFileDir->addFile("file1", fileOps1); @@ -50,12 +50,12 @@ int main() { // Here we init three different aggregation operations. // One of them is join meaning it will add values from all files into an array. // The two arguments after the method type are source dict field name and result dict field name - // If they are left empty ("") the values are taken directly from file->read() and + // If they are left empty ("") the values are taken directly from file->read() and // directly returned as telemetry::Scalar, telemetry::Array, ... // The result here is 1 : [2, 5]. const telemetry::AggOperation aggOp0 = {telemetry::AggMethodType::JOIN, "", "1"}; - // Average of read from files in aggfile if there are different types of Scalar(WithUnit)s the return + // Average of read from files in aggfile if there are different types of Scalar(WithUnit)s the return // type is same as in cpp meaning avg of uint64_t, int64_t and double the result is double. const telemetry::AggOperation aggOp1 = {telemetry::AggMethodType::AVG}; // Sum of read from files in aggfile