Skip to content

Commit fff6891

Browse files
committed
Fix typo
JWT token -> JWT
1 parent 80dec49 commit fff6891

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
@@ -33,7 +33,7 @@ To deploy Cloud Services (extended support) by using the SDK:
3333
var authenticationContext = new AuthenticationContext("https://login.windows.net/{tenantID}");
3434
var credential = new ClientCredential(clientId: "{clientID}", clientSecret: "{clientSecret}");
3535
var result = authenticationContext.AcquireTokenAsync(resource: "https://management.core.windows.net/", clientCredential: credential);
36-
if (result == null) throw new InvalidOperationException("Failed to obtain the JWT token");
36+
if (result == null) throw new InvalidOperationException("Failed to obtain the JWT");
3737
AuthenticationToken = result.Result.AccessToken;
3838
}
3939
public override async Task ProcessHttpRequestAsync(HttpRequestMessage request, CancellationToken cancellationToken)

0 commit comments

Comments
 (0)