From 2b7e9f4e8a12d2abd8f7a2e5d0775565be50ab09 Mon Sep 17 00:00:00 2001 From: anbalogh Date: Wed, 4 Sep 2024 16:42:19 +0000 Subject: [PATCH] fix typos --- protos/infra.proto | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/protos/infra.proto b/protos/infra.proto index 21c176b..0323665 100644 --- a/protos/infra.proto +++ b/protos/infra.proto @@ -26,7 +26,7 @@ message CustomAttribute { // nic_config = NicConfig() // if attr.any_val.Is(NicConfig.DESCRIPTOR): // attr.any_val.Unpack(nic_config) - google.protobuf.Any any_val = 3; + google.protobuf.Any value = 3; } enum MemoryType { @@ -288,15 +288,15 @@ message Binding { // DeviceInstance, DeviceLink, ConnectionLink messages message Inventory { // A collection of all unique types of devices in the infrastructure - // There should only be one entry per device type. + // Uniquess is determined by the Device.name field. // This list is not an instance list, for eg, you define one DGX1 or ZionEx - // device and use the DeviceInstances message to scale up the number those + // device and use the DeviceInstances message to scale up the number of those // devices. map devices = 1; // A collection of all unique types of links in the infrastructure. - // These links can be reused multiple times when creating ConnectionLink and - // DeviceLink messages. + // These links can be reused multiple times when creating ComponentConnection + // and DeviceConnection messages. map links = 2; }