update go sample

This commit is contained in:
wing328
2016-04-10 23:16:32 +08:00
parent 9bd7a708ae
commit 6f7e3c71f2
+2 -2
View File
@@ -153,7 +153,7 @@ func (a PetApi) DeletePet (petId int64, apiKey string) (error) {
}
/**
* Finds Pets by status
* Multiple status values can be provided with comma seperated strings
* Multiple status values can be provided with comma separated strings
* @param status Status values that need to be considered for filter
* @return []Pet
*/
@@ -215,7 +215,7 @@ func (a PetApi) FindPetsByStatus (status []string) ([]Pet, error) {
}
/**
* Finds Pets by tags
* Muliple tags can be provided with comma seperated strings. Use tag1, tag2, tag3 for testing.
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param tags Tags to filter by
* @return []Pet
*/