Skip to content

Commit e89c0dc

Browse files
Two more Acrolinx changes.
1 parent 455c8b9 commit e89c0dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const ONE_MEGABYTE = 1024 * 1024;
131131
const FOUR_MEGABYTES = 4 * ONE_MEGABYTE;
132132
```
133133

134-
Requests made by the API can be set to time-out after a given interval. The [Aborter](/javascript/api/%40azure/storage-blob/aborter?view=azure-node-legacy) class is responsible for managing how requests are timed-out and the following constant is used to define timeouts used in this sample.
134+
Requests made by the API can be set to time out after a given interval. The [Aborter](/javascript/api/%40azure/storage-blob/aborter?view=azure-node-legacy) class is responsible for managing how requests are timed-out and the following constant is used to define timeouts used in this sample.
135135

136136
```javascript
137137
const ONE_MINUTE = 60 * 1000;
@@ -201,7 +201,7 @@ As with the container, the block blob doesn't exist yet. The *blockBlobURL* vari
201201

202202
### Using the Aborter class
203203

204-
Requests made by the API can be set to time-out after a given interval. The *Aborter* class is responsible for managing how requests are timed out. The following code creates a context where a set of requests is given 30 minutes to execute.
204+
Requests made by the API can be set to time out after a given interval. The *Aborter* class is responsible for managing how requests are timed out. The following code creates a context where a set of requests is given 30 minutes to execute.
205205

206206
```javascript
207207
const aborter = Aborter.timeout(30 * ONE_MINUTE);

0 commit comments

Comments
 (0)