File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/cognitive-services/language-service/text-analytics-for-health/includes/quickstarts Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,10 +66,10 @@ Open the file and copy the below code. Remember to replace the `key` variable wi
66
66
const { TextAnalyticsClient , AzureKeyCredential } = require (" @azure/ai-text-analytics" );
67
67
const key = ' <paste-your-key-here>' ;
68
68
const endpoint = ' <paste-your-endpoint-here>' ;
69
- // Authenticate the client with your key and endpoint
69
+ // Authenticate the client with your key and endpoint.
70
70
const textAnalyticsClient = new TextAnalyticsClient (endpoint, new AzureKeyCredential (key));
71
71
72
- // Example method for extracting information from healthcare-related text
72
+ // Example method for extracting information from healthcare-related text.
73
73
async function healthExample (client ) {
74
74
console .log (" == Recognize Healthcare Entities Sample ==" );
75
75
You can’t perform that action at this time.
0 commit comments