Skip to content

Commit 8d7bc52

Browse files
authored
Merge pull request #126042 from changeworld/patch-147
Fix typo
2 parents 11690de + fff6891 commit 8d7bc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cloud-services-extended-support/deploy-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To deploy Cloud Services (extended support) by using the SDK:
3737
var authenticationContext = new AuthenticationContext("https://login.windows.net/{tenantID}");
3838
var credential = new ClientCredential(clientId: "{clientID}", clientSecret: "{clientSecret}");
3939
var result = authenticationContext.AcquireTokenAsync(resource: "https://management.core.windows.net/", clientCredential: credential);
40-
if (result == null) throw new InvalidOperationException("Failed to obtain the JWT token");
40+
if (result == null) throw new InvalidOperationException("Failed to obtain the JWT");
4141
AuthenticationToken = result.Result.AccessToken;
4242
}
4343
public override async Task ProcessHttpRequestAsync(HttpRequestMessage request, CancellationToken cancellationToken)

0 commit comments

Comments
 (0)