Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbalogh committed Sep 4, 2024
1 parent f0d1a7c commit 2b7e9f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions protos/infra.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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<string, Device> 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<string, Link> links = 2;
}

Expand Down

0 comments on commit 2b7e9f4

Please sign in to comment.