diff --git a/docs/site/home.html b/docs/site/home.html
index 75628d6c7dd..6cb076b504c 100755
--- a/docs/site/home.html
+++ b/docs/site/home.html
@@ -102,9 +102,9 @@
Example: Upload a file to Cloud Storage
projectId: 'grape-spaceship-123'
});
-var gcs = gcloud.storage();
+var storage = gcloud.storage();
-var backups = gcs.bucket('backups');
+var backups = storage.bucket('backups');
backups.upload('db.zip', function(err, file) {
// file.createReadStream();
// file.getMetadata();
@@ -118,9 +118,9 @@ Example: Upload a file to Cloud Storage
keyFilename: '/path/to/keyfile.json'
});
-var gcs = gcloud.storage();
+var storage = gcloud.storage();
-var backups = gcs.bucket('backups');
+var backups = storage.bucket('backups');
backups.upload('db.zip', function(err, file) {
// file.createReadStream();
// file.getMetadata();