From 80c1fd7630daedec6e70b70abc28d888aed89d53 Mon Sep 17 00:00:00 2001 From: Armin Date: Tue, 1 Mar 2022 11:04:07 +0100 Subject: [PATCH] [DAT-1021] Fix typo in protos docu (#19) --- src/main/proto/de/cyface/protos/model/measurement.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/proto/de/cyface/protos/model/measurement.proto b/src/main/proto/de/cyface/protos/model/measurement.proto index fb23ce6..0a37c1e 100644 --- a/src/main/proto/de/cyface/protos/model/measurement.proto +++ b/src/main/proto/de/cyface/protos/model/measurement.proto @@ -344,7 +344,7 @@ message Accelerations { /* * Acceleration value of one axis in mm/s^2, in the offset/diff format. E.g.: - * Absolute numbers: -9, 359, -4_820 => Offset-format: -9, +359, -5_179 + * Absolute numbers: -9, 359, -4_820 => Offset-format: -9, +368, -5_179 * * The offset/diff format encodes the data more efficiently, as the `varint` encoding is used. * @@ -357,7 +357,7 @@ message Accelerations { repeated sint32 x = 2; /* * Acceleration value of one axis in mm/s^2, in the offset/diff format. E.g.: - * Absolute numbers: -9, 359, -4_820 => Offset-format: -9, +359, -5_179 + * Absolute numbers: -9, 359, -4_820 => Offset-format: -9, +368, -5_179 * * The offset/diff format encodes the data more efficiently, as the `varint` encoding is used. * @@ -370,7 +370,7 @@ message Accelerations { repeated sint32 y = 3; /* * Acceleration value of one axis in mm/s^2, in the offset/diff format. E.g.: - * Absolute numbers: -9, 359, -4_820 => Offset-format: -9, +359, -5_179 + * Absolute numbers: -9, 359, -4_820 => Offset-format: -9, +368, -5_179 * * The offset/diff format encodes the data more efficiently, as the `varint` encoding is used. *