remove 'get' prefix in methods
diff --git a/openstack/storage/v1/accounts/requests.go b/openstack/storage/v1/accounts/requests.go
index d5b623a..c738573 100644
--- a/openstack/storage/v1/accounts/requests.go
+++ b/openstack/storage/v1/accounts/requests.go
@@ -22,7 +22,7 @@
h["X-Account-Meta-"+k] = v
}
- _, err := perigee.Request("POST", getAccountURL(c), perigee.Options{
+ _, err := perigee.Request("POST", accountURL(c), perigee.Options{
MoreHeaders: h,
OkCodes: []int{204},
})
@@ -38,7 +38,7 @@
h[k] = v
}
- resp, err := perigee.Request("HEAD", getAccountURL(c), perigee.Options{
+ resp, err := perigee.Request("HEAD", accountURL(c), perigee.Options{
MoreHeaders: h,
OkCodes: []int{204},
})
diff --git a/openstack/storage/v1/accounts/urls.go b/openstack/storage/v1/accounts/urls.go
index ae78ff2..53b1343 100644
--- a/openstack/storage/v1/accounts/urls.go
+++ b/openstack/storage/v1/accounts/urls.go
@@ -2,7 +2,7 @@
import "github.com/rackspace/gophercloud"
-// getAccountURL returns the URI for making Account requests.
-func getAccountURL(c *gophercloud.ServiceClient) string {
+// accountURL returns the URI for making Account requests.
+func accountURL(c *gophercloud.ServiceClient) string {
return c.Endpoint
}