Skip to content

Commit ceb7aff

Browse files
Merge pull request #235758 from pauljewellmsft/patch-1
Fix code snippet
2 parents 8ae96a9 + 291ad63 commit ceb7aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/blobs/storage-blobs-tune-upload-download.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ BlobUploadOptions options = new BlobUploadOptions
7272
InitialTransferSize = 8 * 1024 * 1024,
7373

7474
// Set the maximum length of a transfer to 4 MiB
75-
MaximumTransferSize = 4 * 1024 * 1024;
75+
MaximumTransferSize = 4 * 1024 * 1024
7676
}
7777
};
7878

@@ -118,4 +118,4 @@ During a download, the Storage client libraries make one download range request
118118
## Next steps
119119

120120
- To understand more about factors that can influence performance for Azure Storage operations, see [Latency in Blob storage](storage-blobs-latency.md).
121-
- To see a list of design considerations to optimize performance for apps using Blob storage, see [Performance and scalability checklist for Blob storage](storage-performance-checklist.md).
121+
- To see a list of design considerations to optimize performance for apps using Blob storage, see [Performance and scalability checklist for Blob storage](storage-performance-checklist.md).

0 commit comments

Comments
 (0)