Skip to content

Commit da8adc9

Browse files
committed
incorporating edits from JTerry's feedback
Signed-off-by: Craig Wilhite <[email protected]>
1 parent e01b694 commit da8adc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

specs-go/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ type SolarisAnet struct {
433433
type Windows struct {
434434
// LayerFolders contains a list of absolute paths to directories containing image layers.
435435
LayerFolders []string `json:"layerFolders"`
436-
// Devices are a list of interface class GUIDs for which device objects need to be mapped into the container.
436+
// Devices are the list of devices to be mapped into the container.
437437
Devices []WindowsDevice `json:"devices,omitempty"`
438438
// Resources contains information for handling resource constraints for the container.
439439
Resources *WindowsResources `json:"resources,omitempty"`
@@ -452,9 +452,9 @@ type Windows struct {
452452
// WindowsDevice represents information about a host device to be mapped into the container.
453453
type WindowsDevice struct {
454454
// Device identifier: interface class GUID, etc.
455-
Id string `json:"id"`
455+
ID string `json:"id"`
456456
// Device identifier type: "class", etc.
457-
IdType string `json:"id_type"`
457+
IDType string `json:"id_type"`
458458
}
459459

460460
// WindowsResources has container runtime resource constraints for containers running on Windows.

0 commit comments

Comments
 (0)