From 32f5ac66c92ae20e6d85144ca008d0fb36a3489d Mon Sep 17 00:00:00 2001 From: Ma Shimiao Date: Wed, 7 Jun 2017 16:28:11 +0800 Subject: [PATCH] config.go: tiny tfix Signed-off-by: Ma Shimiao --- config-windows.md | 2 +- specs-go/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config-windows.md b/config-windows.md index 2c5dda921..40b8c41e5 100644 --- a/config-windows.md +++ b/config-windows.md @@ -95,7 +95,7 @@ The following parameters can be specified: * **`endpointList`** *(array of strings, OPTIONAL)* - list of HNS (Host Network Service) endpoints that the container should connect to. * **`allowUnqualifiedDNSQuery`** *(bool, OPTIONAL)* - specifies if unqualified DNS name resolution is allowed. -* **`DNSSearchList`** *(array of strings, OPTIONAL)* - comma seperated list of DNS suffixes to use for name resolution. +* **`DNSSearchList`** *(array of strings, OPTIONAL)* - comma separated list of DNS suffixes to use for name resolution. * **`networkSharedContainerName`** *(string, OPTIONAL)* - name (ID) of the container that we will share with the network stack. ### Example diff --git a/specs-go/config.go b/specs-go/config.go index 8bf8d9241..904c6e257 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -486,7 +486,7 @@ type WindowsNetwork struct { EndpointList []string `json:"endpointList,omitempty"` // Specifies if unqualified DNS name resolution is allowed. AllowUnqualifiedDNSQuery bool `json:"allowUnqualifiedDNSQuery,omitempty"` - // Comma seperated list of DNS suffixes to use for name resolution. + // Comma separated list of DNS suffixes to use for name resolution. DNSSearchList []string `json:"DNSSearchList,omitempty"` // Name (ID) of the container that we will share with the network stack. NetworkSharedContainerName string `json:"networkSharedContainerName,omitempty"`