Clarify which statuses are reached at which points.
diff --git a/openstack/compute/v2/servers/urls.go b/openstack/compute/v2/servers/urls.go
index 3440de1..7cfda39 100644
--- a/openstack/compute/v2/servers/urls.go
+++ b/openstack/compute/v2/servers/urls.go
@@ -3,11 +3,11 @@
import "github.com/rackspace/gophercloud"
func getListURL(client *gophercloud.ServiceClient) string {
- return client.ServiceURL("servers", "detail")
+ return client.ServiceURL("servers")
}
-func getCreateURL(client *gophercloud.ServiceClient) string {
- return client.ServiceURL("servers")
+func getDetailURL(client *gophercloud.ServiceClient) string {
+ return client.ServiceURL("servers", "detail")
}
func getServerURL(client *gophercloud.ServiceClient, id string) string {