Rename getFooURL to fooURL.
diff --git a/openstack/compute/v2/images/urls.go b/openstack/compute/v2/images/urls.go
index 93fa8d2..4ae2269 100644
--- a/openstack/compute/v2/images/urls.go
+++ b/openstack/compute/v2/images/urls.go
@@ -2,10 +2,10 @@
 
 import "github.com/rackspace/gophercloud"
 
-func getListURL(client *gophercloud.ServiceClient) string {
+func listURL(client *gophercloud.ServiceClient) string {
 	return client.ServiceURL("images", "detail")
 }
 
-func getImageURL(client *gophercloud.ServiceClient, id string) string {
+func imageURL(client *gophercloud.ServiceClient, id string) string {
 	return client.ServiceURL("images", id)
 }