Skip to content

Commit bcdfc4c

Browse files
committed
Added > to post-example notes in tabs.
1 parent 65ce749 commit bcdfc4c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

concepts/sdks/create-client.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,36 +22,36 @@ The client ID is the app registration ID that is generated when you [register yo
2222

2323
:::code language="csharp" source="./snippets/dotnet/src/SdkSnippets/Snippets/CreateClients.cs" id="DeviceCodeSnippet":::
2424

25-
Include `using` statements for `Azure.Identity` and `Microsoft.Graph` to run this code.
25+
> Include `using` statements for `Azure.Identity` and `Microsoft.Graph` to run this code.
2626
2727
# [Go](#tab/go)
2828

2929
:::code language="go" source="./snippets/go/src/snippets/create_clients.go" id="DeviceCodeSnippet":::
3030

31-
Include `"github.com/Azure/azure-sdk-for-go/sdk/azidentity"` and, `graph "github.com/microsoftgraph/msgraph-sdk-go"` in your import block to run this code.
31+
> Include `"github.com/Azure/azure-sdk-for-go/sdk/azidentity"` and, `graph "github.com/microsoftgraph/msgraph-sdk-go"` in your import block to run this code.
3232
3333
# [Java](#tab/java)
3434

3535
:::code language="java" source="./snippets/java/app/src/main/java/snippets/CreateClients.java" id="DeviceCodeSnippet":::
3636

37-
Include `import` statements for `com.azure.identity.DeviceCodeCredential`, `com.azure.identity.DeviceCodeCredentialBuilder`, and `com.microsoft.graph.serviceclient.GraphServiceClient` to run this code.
37+
> Include `import` statements for `com.azure.identity.DeviceCodeCredential`, `com.azure.identity.DeviceCodeCredentialBuilder`, and `com.microsoft.graph.serviceclient.GraphServiceClient` to run this code.
3838
3939
# [PHP](#tab/php)
4040

4141
:::code language="php" source="./snippets/php/snippets/CreateClients.php" id="AuthorizationCodeSnippet":::
4242

43-
Include `use` statements for `Microsoft\Graph\GraphRequestAdapter`, `Microsoft\Graph\GraphServiceClient`, and `Microsoft\Kiota\Abstractions\Authentication\BaseBearerTokenAuthenticationProvider` to run this code.
43+
> Include `use` statements for `Microsoft\Graph\GraphRequestAdapter`, `Microsoft\Graph\GraphServiceClient`, and `Microsoft\Kiota\Abstractions\Authentication\BaseBearerTokenAuthenticationProvider` to run this code.
4444
4545
# [Python](#tab/python)
4646

4747
:::code language="python" source="./snippets/python/src/snippets/create_clients.py" id="DeviceCodeSnippet":::
4848

49-
Include `import` statements for `DeviceCodeCredential` from `azure.identity` and `GraphServiceClient` from `msgraph.graph_service_client` to run this code.
49+
> Include `import` statements for `DeviceCodeCredential` from `azure.identity` and `GraphServiceClient` from `msgraph.graph_service_client` to run this code.
5050
5151
# [TypeScript](#tab/typescript)
5252

5353
:::code language="typescript" source="./snippets/typescript/src/snippets/createClients.ts" id="DeviceCodeSnippet":::
5454

55-
Include import statements for `DeviceCodeCredential` from `@azure/identity`, `Client` from `@microsoft/microsoft-graph-client`, and `TokenCredentialAuthenticationProvider` from `@microsoft/microsoft-graph-client/authProviders/azureTokenCredentials` to run this code.
55+
> Include import statements for `DeviceCodeCredential` from `@azure/identity`, `Client` from `@microsoft/microsoft-graph-client`, and `TokenCredentialAuthenticationProvider` from `@microsoft/microsoft-graph-client/authProviders/azureTokenCredentials` to run this code.
5656
5757
---

0 commit comments

Comments
 (0)