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 6cfa3af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ 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,8 @@ 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 +1315,8 @@ 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 6cfa3af

Please sign in to comment.