From 77a45067943f8636d2d9ed992a3ce55e41ab74b2 Mon Sep 17 00:00:00 2001 From: Brenna N Epp Date: Fri, 27 Aug 2021 14:41:56 -0500 Subject: [PATCH] docs(storage): add comment to clarify BucketHandle.Object() (#4596) * Add note to Bucket.Object --- storage/bucket.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/storage/bucket.go b/storage/bucket.go index 8066c708e40..602c8512856 100644 --- a/storage/bucket.go +++ b/storage/bucket.go @@ -130,7 +130,8 @@ func (b *BucketHandle) DefaultObjectACL() *ACLHandle { } // Object returns an ObjectHandle, which provides operations on the named object. -// This call does not perform any network operations. +// This call does not perform any network operations such as fetching the object or verifying its existence. +// Use methods on ObjectHandle to perform network operations. // // name must consist entirely of valid UTF-8-encoded runes. The full specification // for valid object names can be found at: