Skip to content

Commit ee91b6c

Browse files
committed
Bugs
1 parent 0379101 commit ee91b6c

File tree

1 file changed

+2
-2
lines changed
  • articles/cognitive-services/language-service/text-analytics-for-health/includes/quickstarts

1 file changed

+2
-2
lines changed

articles/cognitive-services/language-service/text-analytics-for-health/includes/quickstarts/nodejs-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ Open the file and copy the below code. Remember to replace the `key` variable wi
6666
const { TextAnalyticsClient, AzureKeyCredential } = require("@azure/ai-text-analytics");
6767
const key = '<paste-your-key-here>';
6868
const endpoint = '<paste-your-endpoint-here>';
69-
// Authenticate the client with your key and endpoint
69+
// Authenticate the client with your key and endpoint.
7070
const textAnalyticsClient = new TextAnalyticsClient(endpoint, new AzureKeyCredential(key));
7171

72-
// Example method for extracting information from healthcare-related text
72+
// Example method for extracting information from healthcare-related text.
7373
async function healthExample(client) {
7474
console.log("== Recognize Healthcare Entities Sample ==");
7575

0 commit comments

Comments
 (0)