We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0720c commit 9275acbCopy full SHA for 9275acb
1 file changed
README.md
@@ -372,7 +372,7 @@ import com.google.cloud.storage.StorageOptions;
372
373
Storage storage = StorageOptions.getDefaultInstance().getService();
374
BlobId blobId = BlobId.of("bucket", "blob_name");
375
-BlobInfo blobInfo = BlobInfo.newBuiler(blobId).setContentType("text/plain").build();
+BlobInfo blobInfo = BlobInfo.newBuilder(blobId).setContentType("text/plain").build();
376
Blob blob = storage.create(blobInfo, "Hello, Cloud Storage!".getBytes(UTF_8));
377
```
378
The second snippet shows how to update a Storage blob if it exists. Complete source code can be
0 commit comments