Skip to content

Commit

Permalink
Merge pull request #5325 from Blackmist/storageupdate
Browse files Browse the repository at this point in the history
storage updates
  • Loading branch information
cjgronlund committed Oct 15, 2014
2 parents 6d87892 + 37b9cca commit f39b26a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions articles/storage-nodejs-how-to-use-blob-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ To upload data to a page blob, use the following:

* **createPageBlob** - creates a new page blob of a specific length.

* **createPageBlobFromFile** - creates a new page blob and uploads the contents of a file.
* **createPageBlobFromLocalFile** - creates a new page blob and uploads the contents of a file.

* **createPageBlobFromStream** - creates a new page blob and uploads the contents of a stream.

Expand All @@ -187,7 +187,7 @@ To upload data to a page blob, use the following:

The following example uploads the contents of the **test.txt** file into **mypageblob**.

blobSvc.createPageBlobFromFile('mycontainer', 'mypageblob', 'test.txt', function(error, result, response){
blobSvc.createPageBlobFromLocalFile('mycontainer', 'mypageblob', 'test.txt', function(error, result, response){
if(!error){
// file uploaded
}
Expand Down

0 comments on commit f39b26a

Please sign in to comment.