@azure/storage-blob 12.8.1-alpha.20210910.5 → 12.8.1-alpha.20211025.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1774,7 +1774,7 @@ export class BlockBlobClient extends BlobClient {
1774
1774
  * Uploads data to block blob. Requires a bodyFactory as the data source,
1775
1775
  * which need to return a {@link HttpRequestBody} object with the offset and size provided.
1776
1776
  *
1777
- * When data length is no more than the specifiled {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is
1777
+ * When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is
1778
1778
  * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload.
1779
1779
  * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList}
1780
1780
  * to commit the block list.