Skip to content

Commit 4058727

Browse files
Edits
1 parent 9934d33 commit 4058727

9 files changed

+15
-15
lines changed

articles/storage/blobs/storage-blob-download-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can use any of the following methods to download a blob:
4141

4242
## Download to a file path
4343

44-
The following example downloads a blob to a local a file path:
44+
The following example downloads a blob to a local file path:
4545

4646
:::code language="java" source="~/azure-storage-snippets/blobs/howto/Java/blob-devguide/blob-devguide-blobs/src/main/java/com/blobs/devguide/blobs/BlobDownload.java" id="Snippet_DownloadBLobFile":::
4747

articles/storage/blobs/storage-blob-download-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 11/30/2022
9+
ms.date: 04/21/2023
1010
ms.service: storage
1111
ms.subservice: blobs
1212
ms.topic: how-to

articles/storage/blobs/storage-blob-download-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 01/24/2023
9+
ms.date: 04/21/2023
1010
ms.service: storage
1111
ms.subservice: blobs
1212
ms.topic: how-to

articles/storage/blobs/storage-blob-download-typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 03/21/2023
9+
ms.date: 04/21/2023
1010
ms.service: storage
1111
ms.subservice: blobs
1212
ms.topic: how-to

articles/storage/blobs/storage-blob-upload-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 11/16/2022
9+
ms.date: 04/21/2023
1010
ms.service: storage
1111
ms.subservice: blobs
1212
ms.topic: how-to
@@ -16,7 +16,7 @@ ms.custom: devx-track-java, devguide-java
1616

1717
# Upload a block blob with Java
1818

19-
This article shows how to upload a block blob using the [Azure Storage client library for Java](/java/api/overview/azure/storage-blob-readme). You can upload data to a block blob from a file path, a stream, a binary object or a text string. You can also upload blobs with index tags.
19+
This article shows how to upload a block blob using the [Azure Storage client library for Java](/java/api/overview/azure/storage-blob-readme). You can upload data to a block blob from a file path, a stream, a binary object, or a text string. You can also upload blobs with index tags.
2020

2121
## Prerequisites
2222

articles/storage/blobs/storage-blob-upload-javascript.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to upload a blob to your Azure Storage account using the
55
services: storage
66
author: pauljewellmsft
77
ms.author: pauljewell
8-
ms.date: 07/18/2022
8+
ms.date: 04/21/2023
99
ms.service: storage
1010
ms.subservice: blobs
1111
ms.topic: how-to
@@ -15,7 +15,7 @@ ms.custom: devx-track-js, devguide-js
1515

1616
# Upload a blob with JavaScript
1717

18-
This article shows how to upload a blob using the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob). You can upload data to a block blob from a file path, a stream, a binary object or a text string. You can also upload blobs with index tags.
18+
This article shows how to upload a blob using the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob). You can upload data to a block blob from a file path, a stream, a buffer, or a text string. You can also upload blobs with index tags.
1919

2020
## Prerequisites
2121

@@ -91,7 +91,7 @@ const uploadOptions = {
9191
await createBlobFromReadStream(containerClient, `my-text-file.txt`, readableStream, uploadOptions);
9292
```
9393

94-
## Upload a block blob from a BinaryData object
94+
## Upload a block blob from a buffer
9595

9696
The following example uploads a Node.js buffer to blob storage with the [BlockBlobClient](/javascript/api/@azure/storage-blob/blockblobclient) object. Pass in the BlockBlobParallelUpload [options](/javascript/api/@azure/storage-blob/blockblobparalleluploadoptions) to affect the upload:
9797

articles/storage/blobs/storage-blob-upload-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: pauljewellmsft
77

88
ms.author: pauljewell
9-
ms.date: 01/19/2023
9+
ms.date: 04/21/2023
1010
ms.service: storage
1111
ms.subservice: blobs
1212
ms.topic: how-to
@@ -16,7 +16,7 @@ ms.custom: devx-track-python, devguide-python
1616

1717
# Upload a block blob with Python
1818

19-
This article shows how to upload a blob using the [Azure Storage client library for Python](/python/api/overview/azure/storage). You can upload data to a block blob from a file path, a stream, a binary object or a text string. You can also upload blobs with index tags.
19+
This article shows how to upload a blob using the [Azure Storage client library for Python](/python/api/overview/azure/storage). You can upload data to a block blob from a file path, a stream, a binary object, or a text string. You can also upload blobs with index tags.
2020

2121
## Prerequisites
2222

articles/storage/blobs/storage-blob-upload-typescript.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to upload a blob with TypeScript to your Azure Storage ac
55
services: storage
66
author: pauljewellmsft
77
ms.author: pauljewell
8-
ms.date: 03/21/2023
8+
ms.date: 04/21/2023
99
ms.service: storage
1010
ms.subservice: blobs
1111
ms.topic: how-to
@@ -15,7 +15,7 @@ ms.custom: devx-track-ts, devguide-ts
1515

1616
# Upload a blob with TypeScript
1717

18-
This article shows how to upload a blob using the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob). You can upload data to a block blob from a file path, a stream, a binary object or a text string. You can also upload blobs with index tags.
18+
This article shows how to upload a blob using the [Azure Storage client library for JavaScript](https://www.npmjs.com/package/@azure/storage-blob). You can upload data to a block blob from a file path, a stream, a buffer, or a text string. You can also upload blobs with index tags.
1919

2020
## Prerequisites
2121

@@ -94,7 +94,7 @@ const uploadOptions: BlockBlobUploadStreamOptions = {
9494
await createBlobFromReadStream(containerClient, `my-text-file.txt`, readableStream, uploadOptions);
9595
```
9696

97-
## Upload a block blob from a BinaryData object
97+
## Upload a block blob from a buffer
9898

9999
The following example uploads a Node.js buffer to blob storage with the [BlockBlobClient](/javascript/api/@azure/storage-blob/blockblobclient) object. Pass in the BlockBlobParallelUpload [options](/javascript/api/@azure/storage-blob/blockblobparalleluploadoptions) to affect the upload:
100100

articles/storage/blobs/storage-blob-upload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: devx-track-csharp, devguide-csharp
1515

1616
# Upload a blob with .NET
1717

18-
This article shows how to upload a blob using the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage). You can upload data to a block blob from a file path, a stream, a binary object or a text string. You can also open a blob stream and write to it, or upload large blobs in blocks.
18+
This article shows how to upload a blob using the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage). You can upload data to a block blob from a file path, a stream, a binary object, or a text string. You can also open a blob stream and write to it, or upload large blobs in blocks.
1919

2020
## Prerequisites
2121

0 commit comments

Comments
 (0)