Skip to content

Commit

Permalink
Fix double code tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Feb 12, 2016
1 parent bc66860 commit deb228f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,10 @@ public Blob reload(BlobSourceOption... options) {
* </p>
*
* <p>Example usage of replacing blob's metadata:
* <pre> {@code blob.toBuilder().metadata(null).build().update();}
* {@code blob.toBuilder().metadata(newMetadata).build().update();}
* <pre> {@code
* blob.toBuilder().metadata(null).build().update();
* blob.toBuilder().metadata(newMetadata).build().update();
* }
* </pre>
*
* @param options update options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1300,8 +1300,10 @@ private static void checkContentType(BlobInfo blobInfo) throws IllegalArgumentEx
* can be done by setting the provided {@code blobInfo}'s metadata to {@code null}.
*
* <p>Example usage of replacing blob's metadata:
* <pre> {@code service.update(BlobInfo.builder("bucket", "name").metadata(null).build());}
* {@code service.update(BlobInfo.builder("bucket", "name").metadata(newMetadata).build());}
* <pre> {@code
* service.update(BlobInfo.builder("bucket", "name").metadata(null).build());
* service.update(BlobInfo.builder("bucket", "name").metadata(newMetadata).build());
* }
* </pre>
*
* @return the updated blob
Expand All @@ -1315,8 +1317,10 @@ private static void checkContentType(BlobInfo blobInfo) throws IllegalArgumentEx
* can be done by setting the provided {@code blobInfo}'s metadata to {@code null}.
*
* <p>Example usage of replacing blob's metadata:
* <pre> {@code service.update(BlobInfo.builder("bucket", "name").metadata(null).build());}
* {@code service.update(BlobInfo.builder("bucket", "name").metadata(newMetadata).build());}
* <pre> {@code
* service.update(BlobInfo.builder("bucket", "name").metadata(null).build());
* service.update(BlobInfo.builder("bucket", "name").metadata(newMetadata).build());
* }
* </pre>
*
* @return the updated blob
Expand Down

0 comments on commit deb228f

Please sign in to comment.