Skip to content

Commit 7ca782a

Browse files
committed
Fixed build Acrolinx and link errors
1 parent 517d589 commit 7ca782a

6 files changed

+10
-10
lines changed

includes/iot-hub-howto-connect-service-iothub-entra-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ For more information about the pros and cons of using `DefaultAzureCredential`,
3737

3838
[DefaultAzureCredential](/java/api/com.azure.identity.defaultazurecredential) supports different authentication mechanisms and determines the appropriate credential type based on the environment it's executing in. It attempts to use multiple credential types in an order until it finds a working credential.
3939

40-
You can authenticate Microsoft Entra app credentials using [DefaultAzureCredentialBuilder](/java/api/com.azure.identity.defaultazurecredentialbuilder). Save connection parameters such as client secret tenantID, clientID, and client secret values as environmental varaibles. Once the `TokenCredential` is created, pass it to [ServiceClient](/java/api/com.azure.core.annotation.serviceclient) or other builder as the 'credential' parameter.
40+
You can authenticate Microsoft Entra app credentials using [DefaultAzureCredentialBuilder](/java/api/com.azure.identity.defaultazurecredentialbuilder). Save connection parameters such as client secret tenantID, clientID, and client secret values as environmental variables. Once the `TokenCredential` is created, pass it to [ServiceClient](/java/api/com.azure.core.annotation.serviceclient) or other builder as the 'credential' parameter.
4141

42-
In this example, `DefaultAzureCredentialBuilder` will attempt to authenticate a connection from the list described in [DefaultAzureCredential](/java/api/com.azure.identity.defaultazurecredential). The result of a successful Microsoft Entra authentication is a security token credential that is passed to a constructor.
42+
In this example, `DefaultAzureCredentialBuilder` attempts to authenticate a connection from the list described in [DefaultAzureCredential](/java/api/com.azure.identity.defaultazurecredential). The result of a successful Microsoft Entra authentication is a security token credential that is passed to a constructor.
4343

4444
```java
4545
TokenCredential defaultAzureCredential = new DefaultAzureCredentialBuilder().build();

includes/iot-hub-howto-connect-service-iothub-entra-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For more information about the pros and cons of using `DefaultAzureCredential`,
3838

3939
[DefaultAzureCredential](/javascript/api/@azure/identity/defaultazurecredential) supports different authentication mechanisms and determines the appropriate credential type based on the environment it's executing in. It attempts to use multiple credential types in an order until it finds a working credential.
4040

41-
Microsoft Entra requires this pakage:
41+
Microsoft Entra requires this package:
4242

4343
```shell
4444
npm install --save @azure/identity

includes/iot-hub-howto-connect-service-iothub-entra-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The easiest way to use Microsoft Entra to authenticate a backend application is
3333

3434
[DefaultAzureCredential](/python/api/azure-identity/azure.identity.defaultazurecredential) supports different authentication mechanisms and determines the appropriate credential type based on the environment it's executing in. It attempts to use multiple credential types in an order until it finds a working credential.
3535

36-
Microsoft Entra requires this import pakage and corresponding `import` statement:
36+
Microsoft Entra requires this import package and corresponding `import` statement:
3737

3838
```shell
3939
pip install azure-identity

includes/iot-hub-howto-module-twins-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This section describes how to use device application code to:
2525
* Update reported module identity twin properties
2626
* Create a module desired property update callback handler
2727

28-
[!INCLUDE [iot-authentication-device-connection-string.md](../../includes/iot-authentication-device-connection-string.md)]
28+
[!INCLUDE [iot-authentication-device-connection-string.md](iot-authentication-device-connection-string.md)]
2929

3030
### Required device NuGet package
3131

@@ -160,7 +160,7 @@ You can connect a backend service to IoT Hub using the following methods:
160160
* Shared access policy
161161
* Microsoft Entra
162162

163-
[!INCLUDE [iot-authentication-service-connection-string.md](../../includes/iot-authentication-service-connection-string.md)]
163+
[!INCLUDE [iot-authentication-service-connection-string.md](iot-authentication-service-connection-string.md)]
164164

165165
#### Connect using a shared access policy
166166

includes/iot-hub-howto-module-twins-node.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This section describes how to use the [azure-iot-device](/javascript/api/azure-i
2727
* Update module identity reported twin properties
2828
* Receive notice of module identity twin desired property changes
2929

30-
[!INCLUDE [iot-authentication-device-connection-string.md](../../includes/iot-authentication-device-connection-string.md)]
30+
[!INCLUDE [iot-authentication-device-connection-string.md](iot-authentication-device-connection-string.md)]
3131

3232
### Install SDK packages
3333

@@ -332,7 +332,7 @@ You can connect a backend service to IoT Hub using the following methods:
332332
* Shared access policy
333333
* Microsoft Entra
334334
335-
[!INCLUDE [iot-authentication-service-connection-string.md](../../includes/iot-authentication-service-connection-string.md)]
335+
[!INCLUDE [iot-authentication-service-connection-string.md](iot-authentication-service-connection-string.md)]
336336
337337
#### Connect using a shared access policy
338338

includes/iot-hub-howto-module-twins-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This section describes how to use device application code to:
4747
* Update module identity twin reported properties
4848
* Create a module identity twin desired property update callback handler
4949

50-
[!INCLUDE [iot-authentication-device-connection-string.md](../../includes/iot-authentication-device-connection-string.md)]
50+
[!INCLUDE [iot-authentication-device-connection-string.md](iot-authentication-device-connection-string.md)]
5151

5252
### Import statements
5353

@@ -171,7 +171,7 @@ You can connect a backend service to IoT Hub using the following methods:
171171
* Shared access policy
172172
* Microsoft Entra
173173

174-
[!INCLUDE [iot-authentication-service-connection-string.md](../../includes/iot-authentication-service-connection-string.md)]
174+
[!INCLUDE [iot-authentication-service-connection-string.md](iot-authentication-service-connection-string.md)]
175175

176176
#### Connect using a shared access policy
177177

0 commit comments

Comments
 (0)