Merge pull request #145 from ahmetalpbalkan/typofix

Fix typo in ListHostedServiceResponse
This commit is contained in:
Ahmet Alp Balkan 2015-05-18 16:15:05 -07:00
Родитель 911224eb61 3535c92e81
Коммит 9b89688e7c
2 изменённых файлов: 3 добавлений и 4 удалений

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

@ -90,8 +90,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 {
@ -99,7 +99,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"`
}