Fix typo in ListHostedServiceResponse

This commit is contained in:
Ahmet Alp Balkan 2015-05-18 15:00:55 -07:00
Родитель 8fc04323d5
Коммит 3535c92e81
2 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -102,8 +102,8 @@ func (h HostedServiceClient) GetHostedService(name string) (HostedService, error
return hostedService, nil
}
func (h HostedServiceClient) ListHostedServices() (ListHostedServiceResponse, error) {
var response ListHostedServiceResponse
func (h HostedServiceClient) ListHostedServices() (ListHostedServicesResponse, error) {
var response ListHostedServicesResponse
data, err := h.client.SendAzureGetRequest(azureHostedServiceListURL)
if err != nil {
@ -111,7 +111,6 @@ func (h HostedServiceClient) ListHostedServices() (ListHostedServiceResponse, er
}
err = xml.Unmarshal(data, &response)
return response, err
}

Просмотреть файл

@ -54,6 +54,6 @@ const (
CertificateFormatCer = CertificateFormat("cer")
)
type ListHostedServiceResponse struct {
type ListHostedServicesResponse struct {
HostedServices []HostedService `xml:"HostedService"`
}