Rename gophercloud.CommonResult references.
diff --git a/openstack/compute/v2/flavors/results.go b/openstack/compute/v2/flavors/results.go
index 1e274e3..c96a3a7 100644
--- a/openstack/compute/v2/flavors/results.go
+++ b/openstack/compute/v2/flavors/results.go
@@ -14,7 +14,7 @@
// GetResult temporarily holds the reponse from a Get call.
type GetResult struct {
- gophercloud.CommonResult
+ gophercloud.Result
}
// Extract provides access to the individual Flavor returned by the Get function.
diff --git a/openstack/compute/v2/images/results.go b/openstack/compute/v2/images/results.go
index 3c22eeb..ff0ae53 100644
--- a/openstack/compute/v2/images/results.go
+++ b/openstack/compute/v2/images/results.go
@@ -8,7 +8,7 @@
// GetResult temporarily stores a Get response.
type GetResult struct {
- gophercloud.CommonResult
+ gophercloud.Result
}
// Extract interprets a GetResult as an Image.
diff --git a/openstack/compute/v2/servers/results.go b/openstack/compute/v2/servers/results.go
index d284ed8..15003d8 100644
--- a/openstack/compute/v2/servers/results.go
+++ b/openstack/compute/v2/servers/results.go
@@ -7,7 +7,7 @@
)
type serverResult struct {
- gophercloud.CommonResult
+ gophercloud.Result
}
// Extract interprets any serverResult as a Server, if possible.