Skip to content

Commit 1f3b698

Browse files
committed
prereq tweaks
1 parent accc91a commit 1f3b698

6 files changed

+15
-11
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ In this quickstart, you learn how to use the Go programming language to upload,
2222
Make sure you have the following additional prerequisites installed:
2323

2424
* [Go 1.8 or above](https://golang.org/dl/)
25-
* [Azure Storage Blob SDK for Go](https://github.com/azure/azure-storage-blob-go/) using `go get -u github.com/Azure/azure-storage-blob-go/azblob`.
25+
* [Azure Storage Blob SDK for Go](https://github.com/azure/azure-storage-blob-go/), using the following command:
2626

27-
> [!NOTE]
28-
> Make sure that you capitalize Azure in the URL. Doing otherwise can cause case-related import problems when working with the SDK. You also need to capitalize Azure in your import statements.
27+
```
28+
go get -u github.com/Azure/azure-storage-blob-go/azblob
29+
```
2930
31+
> [!NOTE]
32+
> Make sure that you capitalize `Azure` in the URL to avoid case-related import problems when working with the SDK. Also capitalize `Azure` in your import statements.
33+
3034
## Download the sample application
3135
The [sample application](https://github.com/Azure-Samples/storage-blobs-go-quickstart.git) used in this quickstart is a basic Go application.
3236

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In this quickstart, you learn how to use the new Java Storage SDK to upload, dow
2121

2222
Make sure you have the following additional prerequisites installed:
2323

24-
* [Maven](http://maven.apache.org/download.cgi) to work from the command line, or any Java integrated development environment that you prefer
24+
* [Maven](http://maven.apache.org/download.cgi) to work from the command line, or any Java integrated development environment that you prefer.
2525
* [JDK](https://aka.ms/azure-jdks)
2626

2727
## Download the sample application

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ In this quickstart, you learn how to use PHP to upload, download, and list block
2020

2121
Make sure you have the following additional prerequisites installed:
2222

23-
* Install [PHP](http://php.net/downloads.php)
24-
* Install [the Azure Storage SDK for PHP](https://github.com/Azure/azure-storage-php)
23+
* [PHP](http://php.net/downloads.php)
24+
* [Azure Storage SDK for PHP](https://github.com/Azure/azure-storage-php)
2525

2626
## Download the sample application
2727
The [sample application](https://github.com/Azure-Samples/storage-blobs-php-quickstart.git) used in this quickstart is a basic PHP application.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ In this quickstart, you'll see how to use Python to upload, download, and list b
2121

2222
Make sure you have the following additional prerequisites installed:
2323

24-
* Install [Python](https://www.python.org/downloads/).
25-
* Download and install [Azure Storage SDK for Python](https://github.com/Azure/azure-sdk-for-python).
24+
* [Python](https://www.python.org/downloads/)
25+
* [Azure Storage SDK for Python](https://github.com/Azure/azure-sdk-for-python)
2626

2727
## Download the sample application
2828
The [sample application](https://github.com/Azure-Samples/storage-blobs-python-quickstart.git) in this quickstart is a basic Python application.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ In this quickstart, you learn how to use Ruby to upload, download, and list bloc
2121

2222
Make sure you have the following additional prerequisites installed:
2323

24-
* Install [Ruby](https://www.ruby-lang.org/en/downloads/)
25-
* Install the [Azure Storage library for Ruby](https://docs.microsoft.com/azure/storage/blobs/storage-ruby-how-to-use-blob-storage#configure-your-application-to-access-storage) using the rubygem package.
24+
* [Ruby](https://www.ruby-lang.org/en/downloads/)
25+
* [Azure Storage library for Ruby](https://docs.microsoft.com/azure/storage/blobs/storage-ruby-how-to-use-blob-storage#configure-your-application-to-access-storage), using the rubygem package:
2626

2727
```
2828
gem install azure-storage-blob

includes/storage-quickstart-prereq-include.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ms.custom: "include file"
1212

1313
To access Azure Storage, you'll need an Azure subscription. If you don't already have a subscription, then create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
1414

15-
All access to Azure Storage takes place through a storage account. If you don't already have a storage account that you would like to use, then create an Azure storage account in the [Azure portal](https://portal.azure.com/#create/Microsoft.StorageAccount-ARM). You can also create a storage account using Azure PowerShell or Azure CLI. For help creating the account, see [Create a storage account](../articles/storage/common/storage-quickstart-create-account.md).
15+
All access to Azure Storage takes place through a storage account. If you don't already have a storage account, you can easily create one using the [Azure portal](https://portal.azure.com/#create/Microsoft.StorageAccount-ARM). You can also create a storage account using Azure PowerShell or Azure CLI. For help creating the account, see [Create a storage account](../articles/storage/common/storage-quickstart-create-account.md).

0 commit comments

Comments
 (0)