Rename getFooURL to fooURL.
diff --git a/openstack/compute/v2/flavors/urls.go b/openstack/compute/v2/flavors/urls.go
index 0e2d7c2..9e5b562 100644
--- a/openstack/compute/v2/flavors/urls.go
+++ b/openstack/compute/v2/flavors/urls.go
@@ -8,7 +8,7 @@
"github.com/rackspace/gophercloud"
)
-func getListURL(client *gophercloud.ServiceClient, lfo ListFilterOptions) string {
+func listURL(client *gophercloud.ServiceClient, lfo ListFilterOptions) string {
v := url.Values{}
if lfo.ChangesSince != "" {
v.Set("changes-since", lfo.ChangesSince)
@@ -32,6 +32,6 @@
return client.ServiceURL("flavors", "detail") + tail
}
-func getFlavorURL(client *gophercloud.ServiceClient, id string) string {
+func flavorURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("flavors", id)
}