Skip to content

Commit dc84ac7

Browse files
authored
Merge pull request #18937 from nschonni/patch-2
typo: specfied -> specified
2 parents 4c4b39e + 929a066 commit dc84ac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cognitive-services/Translator/transform-text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ namespace MicrosoftTranslatorSdk.HttpSamples
174174
//If clientid or client secret has special characters, encode before sending request
175175
this.request = string.Format("grant_type=client_credentials&client_id={0}&client_secret={1}&scope=http://api.microsofttranslator.com", HttpUtility.UrlEncode(clientId), HttpUtility.UrlEncode(clientSecret));
176176
this.token = HttpPost(DatamarketAccessUri, this.request);
177-
//renew the token every specfied minutes
177+
//renew the token every specified minutes
178178
accessTokenRenewer = new Timer(new TimerCallback(OnTokenExpiredCallback), this, TimeSpan.FromMinutes(RefreshTokenDuration), TimeSpan.FromMilliseconds(-1));
179179
}
180180
public AdmAccessToken GetAccessToken()

0 commit comments

Comments
 (0)