Skip to content

Commit b909561

Browse files
Acrolinx fixes.
1 parent d778e01 commit b909561

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

articles/storage/blobs/storage-quickstart-blobs-java-legacy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ git clone https://github.com/Azure-Samples/storage-blobs-java-quickstart.git
3232

3333
This command clones the repository to your local git folder. To open the project, launch Eclipse and close the Welcome screen. Select **File** then **Open Projects from File System**. Make sure **Detect and configure project natures** is checked. Select **Directory** then navigate to where you stored the cloned repository. Inside the cloned repository, select the **blobAzureApp** folder. Make sure the **blobAzureApp** project appears as an Eclipse project, then select **Finish**.
3434

35-
Once the project finishes importing, open **AzureApp.java** (located in **blobQuickstart.blobAzureApp** inside of **src/main/java**), and replace the `accountname` and `accountkey` inside of the `storageConnectionString` string. Then run the application. Specific instructions for completing these tasks are described in the following sections.
35+
Once the project completes importing, open **AzureApp.java** (located in **blobQuickstart.blobAzureApp** inside of **src/main/java**), and replace the `accountname` and `accountkey` inside of the `storageConnectionString` string. Then run the application. Specific instructions for completing these tasks are described in the following sections.
3636

3737
[!INCLUDE [storage-copy-connection-string-portal](../../../includes/storage-copy-connection-string-portal.md)]
3838

@@ -73,7 +73,7 @@ Before you continue, check your default directory (*C:\Users\<user>\AppData\Loca
7373
>[!NOTE]
7474
>You can also use a tool such as the [Azure Storage Explorer](https://storageexplorer.com/?toc=%2fazure%2fstorage%2fblobs%2ftoc.json) to view the files in Blob storage. Azure Storage Explorer is a free cross-platform tool that allows you to access your storage account information.
7575
76-
After you've verified the files, press the **Enter** key to finish the demo and delete the test files. Now that you know what the sample does, open the **AzureApp.java** file to look at the code.
76+
After you've verified the files, press the **Enter** key to complete the demo and delete the test files. Now that you know what the sample does, open the **AzureApp.java** file to look at the code.
7777

7878
## Understand the sample code
7979

articles/storage/blobs/storage-quickstart-blobs-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This section walks you through preparing a project to work with the Azure Blob s
3636

3737
Create a Java application named *blob-quickstart-v12*.
3838

39-
1. In a console window (such as cmd, PowerShell, or Bash), use Maven to create a new console app with the name *blob-quickstart-v12*. Type the following **mvn** command to create a simple "Hello world!" Java project.
39+
1. In a console window (such as cmd, PowerShell, or Bash), use Maven to create a new console app with the name *blob-quickstart-v12*. Type the following **mvn** command to create a "Hello world!" Java project.
4040

4141
```console
4242
mvn archetype:generate -DgroupId=com.blobs.quickstart \
@@ -275,7 +275,7 @@ blobClient.downloadToFile(localPath + downloadFileName);
275275

276276
The following code cleans up the resources the app created by removing the entire container using the [​delete](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-blob/12.0.0/com/azure/storage/blob/BlobContainerClient.html#delete--) method. It also deletes the local files created by the app.
277277

278-
The app pauses for user input by calling `System.console().readLine()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were actually created correctly, before they are deleted.
278+
The app pauses for user input by calling `System.console().readLine()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were created correctly, before they are deleted.
279279

280280
Add this code to the end of the `Main` method:
281281

@@ -351,4 +351,4 @@ To see Blob storage sample apps, continue to:
351351
> [Azure Blob storage SDK v12 Java samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-blob/src/samples/java/com/azure/storage/blob)
352352
353353
* To learn more, see the [Azure SDK for Java](https://github.com/Azure/azure-sdk-for-java/blob/master/README.md).
354-
* For tutorials, samples, quick starts and other documentation, visit [Azure for Java cloud developers](/azure/java/).
354+
* For tutorials, samples, quickstarts, and other documentation, visit [Azure for Java cloud developers](/azure/java/).

articles/storage/blobs/storage-quickstart-blobs-nodejs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ From the project directory:
8484

8585
1. Open another new text file in your code editor
8686
1. Add `require` calls to load Azure and Node.js modules
87-
1. Create the structure for the program, including very basic exception handling
87+
1. Create the structure for the program, including basic exception handling
8888

8989
Here's the code:
9090

@@ -220,7 +220,7 @@ for await (const blob of containerClient.listBlobsFlat()) {
220220

221221
### Download blobs
222222

223-
Download the previously created blob by calling the [download](/javascript/api/@azure/storage-blob/blockblobclient#download-undefined---number--undefined---number--blobdownloadoptions-) method. The example code includes a helper function called `streamToString` which is used to read a Node.js readable stream into a string.
223+
Download the previously created blob by calling the [download](/javascript/api/@azure/storage-blob/blockblobclient#download-undefined---number--undefined---number--blobdownloadoptions-) method. The example code includes a helper function called `streamToString`, which is used to read a Node.js readable stream into a string.
224224

225225
Add this code to the end of the `main` function:
226226

@@ -302,7 +302,7 @@ Step through the code in your debugger and check your [Azure portal](https://por
302302

303303
In this quickstart, you learned how to upload, download, and list blobs using JavaScript.
304304

305-
For tutorials, samples, quick starts and other documentation, visit:
305+
For tutorials, samples, quickstarts, and other documentation, visit:
306306

307307
> [!div class="nextstepaction"]
308308
> [Azure for JavaScript documentation](/azure/javascript/)

articles/storage/blobs/storage-quickstart-blobs-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ From the project directory:
6969

7070
1. Open a new text file in your code editor
7171
1. Add `import` statements
72-
1. Create the structure for the program, including very basic exception handling
72+
1. Create the structure for the program, including basic exception handling
7373

7474
Here's the code:
7575

@@ -222,7 +222,7 @@ with open(download_file_path, "wb") as download_file:
222222

223223
The following code cleans up the resources the app created by removing the entire container using the [​delete_container](/python/api/azure-storage-blob/azure.storage.blob.containerclient#delete-container---kwargs-) method. You can also delete the local files, if you like.
224224

225-
The app pauses for user input by calling `input()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were actually created correctly, before they are deleted.
225+
The app pauses for user input by calling `input()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were created correctly, before they are deleted.
226226

227227
Add this code to the end of the `try` block:
228228

@@ -286,4 +286,4 @@ To see Blob storage sample apps, continue to:
286286
> [Azure Blob storage SDK v12 Python samples](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-blob/samples)
287287

288288
* To learn more, see the [Azure SDK for Python](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/storage/azure-storage-blob/README.md).
289-
* For tutorials, samples, quick starts and other documentation, visit [Azure for Python Developers](/azure/python/).
289+
* For tutorials, samples, quickstarts, and other documentation, visit [Azure for Python Developers](/azure/python/).

0 commit comments

Comments
 (0)