Skip to content

Commit 58c4f40

Browse files
committed
Minor typo's in code
1 parent 9aa3834 commit 58c4f40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

learn-pr/wwl-data-ai/detect-analyze-recognize-faces/includes/3-detect-analyze-faces.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ from azure.ai.vision.face.models import *
1010
from azure.core.credentials import AzureKeyCredential
1111

1212
face_client = FaceClient(
13-
endpoint="<YOUR_RESOURCE_ENDPOINT">,
13+
endpoint="<YOUR_RESOURCE_ENDPOINT>",
1414
credential=AzureKeyCredential("<YOUR_RESOURCE_KEY>"))
1515
```
1616

@@ -23,7 +23,7 @@ using Azure;
2323
using Azure.AI.Vision.Face;
2424

2525
FaceClient faceClient = new FaceClient(
26-
new Uri("<YOUR_RESOURCE_ENDPOINT">),
26+
new Uri("<YOUR_RESOURCE_ENDPOINT>"),
2727
new AzureKeyCredential("<YOUR_RESOURCE_KEY>"));
2828
```
2929

0 commit comments

Comments
 (0)