From 2c78636bc2004c2e84056b664ec0f22c62a7d5c1 Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Wed, 11 Dec 2019 15:41:58 +0100 Subject: [PATCH] Fix link to block storage API reference (#287) The previous link does lead to the right anchor. --- storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage.go b/storage.go index a4e13f8..bf8addb 100644 --- a/storage.go +++ b/storage.go @@ -15,7 +15,7 @@ const ( // StorageService is an interface for interfacing with the storage // endpoints of the Digital Ocean API. -// See: https://developers.digitalocean.com/documentation/v2#storage +// See: https://developers.digitalocean.com/documentation/v2/#block-storage type StorageService interface { ListVolumes(context.Context, *ListVolumeParams) ([]Volume, *Response, error) GetVolume(context.Context, string) (*Volume, *Response, error)