Skip to content

Commit

Permalink
incorporating edits from JTerry's feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Wilhite <crwilhit@microsoft.com>
  • Loading branch information
cwilhit committed Jul 2, 2018
1 parent e01b694 commit da8adc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs-go/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ type SolarisAnet struct {
type Windows struct {
// LayerFolders contains a list of absolute paths to directories containing image layers.
LayerFolders []string `json:"layerFolders"`
// Devices are a list of interface class GUIDs for which device objects need to be mapped into the container.
// Devices are the list of devices to be mapped into the container.
Devices []WindowsDevice `json:"devices,omitempty"`
// Resources contains information for handling resource constraints for the container.
Resources *WindowsResources `json:"resources,omitempty"`
Expand All @@ -452,9 +452,9 @@ type Windows struct {
// WindowsDevice represents information about a host device to be mapped into the container.
type WindowsDevice struct {
// Device identifier: interface class GUID, etc.
Id string `json:"id"`
ID string `json:"id"`
// Device identifier type: "class", etc.
IdType string `json:"id_type"`
IDType string `json:"id_type"`
}

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

0 comments on commit da8adc9

Please sign in to comment.