diff --git a/src/main/java/com/google/gcloud/examples/StorageExample.java b/src/main/java/com/google/gcloud/examples/StorageExample.java
index 05f1f9336107..b6f54efa1d93 100644
--- a/src/main/java/com/google/gcloud/examples/StorageExample.java
+++ b/src/main/java/com/google/gcloud/examples/StorageExample.java
@@ -121,6 +121,8 @@ public String params() {
* This class demonstrates how to retrieve Bucket or Blob metadata.
* If more than one blob is supplied a Batch operation would be used to get all blobs metadata
* in a single RPC.
+ *
+ * @see Objects: get
*/
private static class InfoAction extends BlobsAction {
@Override
@@ -166,6 +168,8 @@ public String params() {
* This class demonstrates how to delete a blob.
* If more than one blob is supplied a Batch operation would be used to delete all requested
* blobs in a single RPC.
+ *
+ * @see Objects: delete
*/
private static class DeleteAction extends BlobsAction {
@Override
@@ -196,6 +200,8 @@ public void run(StorageService storage, Blob... blobs) {
/**
* This class demonstrates how to list buckets or a bucket's blobs.
+ *
+ * @see Objects: list
*/
private static class ListAction extends StorageAction {
@@ -233,6 +239,8 @@ public String params() {
/**
* This class demonstrates how to create a new Blob or to update its content.
+ *
+ * @see Objects: insert
*/
private static class UploadAction extends StorageAction> {
@Override
@@ -286,6 +294,8 @@ public String params() {
* This class demonstrates how read a blob's content.
* The example will dump the content to a local file if one was given or write
* it to stdout otherwise.
+ *
+ * @see Objects: get
*/
private static class DownloadAction extends StorageAction> {
@@ -354,7 +364,7 @@ public String params() {
/**
* This class demonstrates how to use the copy command.
*
- * @see Object copy
+ * @see Objects: copy
*/
private static class CopyAction extends StorageAction {
@Override
@@ -380,7 +390,7 @@ public String params() {
/**
* This class demonstrates how to use the compose command.
*
- * @see Object compose
+ * @see Objects: compose
*/
private static class ComposeAction extends StorageAction {
@Override
@@ -411,7 +421,7 @@ public String params() {
/**
* This class demonstrates how to update a blob's metadata.
*
- * @see Object compose
+ * @see Objects: update
*/
private static class UpdateMetadata extends StorageAction>> {