Skip to content

Commit 2c4d0e1

Browse files
committed
Fix anchor links so they work when converting to html
1 parent a88bad5 commit 2c4d0e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/identity/Azure.Identity/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ A credential is a class which contains or can obtain the data needed for a servi
6161

6262
The Azure Identity library focuses on OAuth authentication with Azure Active directory, and it offers a variety of credential classes capable of acquiring an AAD token to authenticate service requests. All of the credential classes in this library are implementations of the `TokenCredential` abstract class in [Azure.Core][azure_core_library], and any of them can be used to construct service clients capable of authenticating with a `TokenCredential`.
6363

64-
See [Credential Classes](#Credential-Classes) for a complete listing of available credential types.
64+
See [Credential Classes](#credential-classes) for a complete listing of available credential types.
6565

6666
### DefaultAzureCredential
6767
The `DefaultAzureCredential` is appropriate for most scenarios where the application is intended to ultimately be run in the Azure Cloud. This is because the `DefaultAzureCredential` combines credentials commonly used to authenticate when deployed, with credentials used to authenticate in a development environment. The `DefaultAzureCredential` will attempt to authenticate via the following mechanisms in order.
6868

6969
![DefaultAzureCredential authentication flow][default_azure_credential_authflow_image]
7070

71-
- Environment - The `DefaultAzureCredential` will read account information specified via [environment variables](#Environment-Variables) and use it to authenticate.
71+
- Environment - The `DefaultAzureCredential` will read account information specified via [environment variables](#environment-variables) and use it to authenticate.
7272
- Managed Identity - If the application is deployed to an Azure host with Managed Identity enabled, the `DefaultAzureCredential` will authenticate with that account.
7373
- Visual Studio - If the developer has authenticated via Visual Studio, the `DefaultAzureCredential` will authenticate with that account.
7474
- Visual Studio Code - If the developer has authenticated via the Visual Studio Code Azure Account plugin, the `DefaultAzureCredential` will authenticate with that account.

0 commit comments

Comments
 (0)