Skip to content

Commit bd23251

Browse files
review edits
1 parent ccebed3 commit bd23251

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/storage/blobs/TOC.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ items:
559559
href: storage-blob-dotnet-get-started.md
560560
- name: Authorize access from your application
561561
items:
562-
- name: Azure Active Directory
562+
- name: Microsoft Entra ID
563563
items:
564564
- name: Overview
565565
href: /dotnet/azure/sdk/authentication?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
@@ -653,7 +653,7 @@ items:
653653
href: storage-blob-java-get-started.md
654654
- name: Authorize access from your application
655655
items:
656-
- name: Azure Active Directory
656+
- name: Microsoft Entra ID
657657
items:
658658
- name: Overview
659659
href: /azure/developer/java/sdk/identity?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
@@ -733,7 +733,7 @@ items:
733733
href: storage-blob-javascript-get-started.md
734734
- name: Authorize access from your application
735735
items:
736-
- name: Azure Active Directory
736+
- name: Microsoft Entra ID
737737
items:
738738
- name: Overview
739739
href: /azure/developer/javascript/sdk/authentication/overview?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
@@ -803,7 +803,7 @@ items:
803803
href: storage-blob-typescript-get-started.md
804804
- name: Authorize access from your application
805805
items:
806-
- name: Azure Active Directory
806+
- name: Microsoft Entra ID
807807
items:
808808
- name: Overview
809809
href: /azure/developer/javascript/sdk/authentication/overview?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
@@ -871,7 +871,7 @@ items:
871871
href: storage-blob-python-get-started.md
872872
- name: Authorize access from your application
873873
items:
874-
- name: Azure Active Directory
874+
- name: Microsoft Entra ID
875875
items:
876876
- name: Overview
877877
href: /azure/developer/python/sdk/authentication-overview?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
@@ -951,7 +951,7 @@ items:
951951
href: storage-blob-go-get-started.md
952952
- name: Authorize access from your application
953953
items:
954-
- name: Azure Active Directory
954+
- name: Microsoft Entra ID
955955
items:
956956
- name: Authentication in development environments
957957
href: /azure/developer/go/azure-sdk-authentication?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json

articles/storage/blobs/storage-blob-upload-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To upload a blob, call any of the following methods from the client object:
3737
- [UploadFile](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob#Client.UploadFile)
3838
- [UploadStream](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob#Client.UploadStream)
3939

40-
To perform the upload, the client library might use either [Put Blob](/rest/api/storageservices/put-blob) or a series of [Put Block](/rest/api/storageservices/put-block) calls followed by [Put Block List](/rest/api/storageservices/put-block-list). This behavior depends on the overall size of the object and how the data transfer options are set.
40+
To perform the upload, the client library might use either [Put Blob](/rest/api/storageservices/put-blob) or a series of [Put Block](/rest/api/storageservices/put-block) calls followed by [`Put Block List`](/rest/api/storageservices/put-block-list). This behavior depends on the overall size of the object and how the data transfer options are set.
4141

4242
## Upload a block blob from a local file path
4343

0 commit comments

Comments
 (0)