Skip to content

Commit cd02def

Browse files
committed
Addressed Acrolinx recommendations
1 parent ff6dacd commit cd02def

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/storage/common/storage-use-azurite.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Within Visual Studio Code, select the **EXTENSIONS** pane and search for *Azurit
2929

3030
![Visual Studio Code extensions marketplace](media/storage-use-azurite/azurite-vs-code-extension.png)
3131

32-
Alternatively, navigate to [Visual Studio Code extension market](https://marketplace.visualstudio.com/items?itemName=Azurite.azurite) in your browser. Select the **Install** button to open Visual Studio Code and go directly to the Azurite extension page.
32+
You can also navigate to [Visual Studio Code extension market](https://marketplace.visualstudio.com/items?itemName=Azurite.azurite) in your browser. Select the **Install** button to open Visual Studio Code and go directly to the Azurite extension page.
3333

3434
You can quickly start or close Azurite in the Visual Studio Code status bar. Click on **[Azurite Blob Service]** or **[Azurite Queue Service]**.
3535

@@ -47,7 +47,7 @@ The extension supports the following Visual Studio Code commands. To open the co
4747

4848
To configure Azurite within Visual Studio Code, select the extensions pane. Select the **Manage** (gear) icon for **Azurite**. Select **Configure Extension Settings**.
4949

50-
![Azurite configure extension settings](media/storage-use-azurite/azurite-configure-extension-settings.png)
50+
![Azurites configure extension settings](media/storage-use-azurite/azurite-configure-extension-settings.png)
5151

5252
The following settings are supported:
5353

@@ -102,7 +102,7 @@ docker run -p 10000:10000 mcr.microsoft.com/azure-storage/azurite
102102

103103
**Set all Azurite parameters**:
104104

105-
This example shows how to set all of the command line parameters. All of the parameters below should be placed on a single command line.
105+
This example shows how to set all of the command-line parameters. All of the parameters below should be placed on a single command line.
106106

107107
```console
108108
docker run -p 8888:8888
@@ -116,7 +116,7 @@ docker run -p 8888:8888
116116
--queueHost 0.0.0.0
117117
```
118118

119-
See [Command line options](#command-line-options) for more information about configuring Azurite at start-up.
119+
For more information about configuring Azurite at start-up, see [Command-line options](#command-line-options).
120120

121121
## Clone, build, and run Azurite from the GitHub repository
122122

@@ -149,13 +149,13 @@ azurite --silent --location c:\azurite --debug c:\azurite\debug.log
149149

150150
This command tells Azurite to store all data in a particular directory, *c:\azurite*. If the `--location` option is omitted, it will use the current working directory.
151151

152-
## Command line options
152+
## Command-line options
153153

154-
This section details the command line switches available when launching Azurite. All command line switches are optional.
154+
This section details the command line switches available when launching Azurite. All command-line switches are optional.
155155

156156
### Help
157157

158-
**Optional** Get command line help by using the `--help` switch.
158+
**Optional** Get command-line help by using the `--help` switch.
159159

160160
```console
161161
azurite --help
@@ -340,7 +340,7 @@ Azurite supports basic authentication by specifying the `basic` parameter to the
340340

341341
Connect to Azurite from Azure Storage SDKs or tools, like [Azure Storage Explorer](https://azure.microsoft.com/features/storage-explorer/), by using any authentication strategy. Authentication is required. Azurite supports authorization with OAuth, Shared Key, and shared access signatures (SAS). Azurite also supports anonymous access to public containers.
342342

343-
If you are using the Azure SDKs, start Azurite with the `--oauth basic` option.
343+
If you're using the Azure SDKs, start Azurite with the `--oauth basic` option.
344344

345345
### Well-known storage account and key
346346

@@ -363,7 +363,7 @@ set AZURITE_ACCOUNTS="account1:key1"
363363
export AZURITE_ACCOUNTS="account1:key1"
364364
```
365365

366-
Or use multiple storage accounts with 2 keys each:
366+
Or use multiple storage accounts with two keys each:
367367

368368
```cmd
369369
set AZURITE_ACCOUNTS="account1:key1:key2;account2:key1:key2"
@@ -436,7 +436,7 @@ If you used `dotnet dev-certs` to generate your self-signed certificate, use the
436436
DefaultEndpointsProtocol=https;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=https://localhost:10000/devstoreaccount1;QueueEndpoint=https://localhost:10001/devstoreaccount1;
437437
```
438438

439-
Update the connection string accordingly when using [custom storage accounts and keys](#custom-storage-accounts-and-keys).
439+
Update the connection string when using [custom storage accounts and keys](#custom-storage-accounts-and-keys).
440440

441441
For more information, see [Configure Azure Storage connection strings](storage-configure-connection-string.md).
442442

@@ -506,7 +506,7 @@ The following address might be used for accessing a blob in Azurite:
506506

507507
### Scaling and performance
508508

509-
Azurite isn't a scalable storage service and doesn't support a large number of concurrent clients. There's no performance guarantee. Azurite is intended for development and testing purposes.
509+
Azurite doesn't support a large number of concurrent clients. There's no performance guarantee. Azurite is intended for development and testing purposes.
510510

511511
### Error handling
512512

0 commit comments

Comments
 (0)