From 533c8e7341d0659e3cc43d834793a7a965703f55 Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Mon, 15 Nov 2021 10:12:12 +0100 Subject: [PATCH] DOC: More typos and comments. --- proto/caosdb/entity/v1/main.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/caosdb/entity/v1/main.proto b/proto/caosdb/entity/v1/main.proto index db89ef5..dd5b0b2 100644 --- a/proto/caosdb/entity/v1/main.proto +++ b/proto/caosdb/entity/v1/main.proto @@ -77,7 +77,7 @@ message CollectionValues { repeated ScalarValue values = 1; } -// Represents special values which are otherwise hard to tranfer via protobuf. +// Represents special values which are otherwise hard to transfer via protobuf. enum SpecialValue { // Represent the NULL value. SPECIAL_VALUE_UNSPECIFIED = 0; @@ -95,7 +95,7 @@ message ScalarValue { double double_value = 2; // The value as bool bool boolean_value = 3; - // The value as string + // The value as string. For the empty string, you may use special_value. string string_value = 4; // The value is a special value (e.g. NULL or the empty string) SpecialValue special_value = 5; -- GitLab