Skip to content

Commit ab226d1

Browse files
authored
Merge pull request #101433 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 6ea6a5b + 701eb87 commit ab226d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cognitive-services/Face/Face-API-How-to-Topics/how-to-add-faces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ await faceClient.LargePersonGroup.CreateAsync(personGroupId, personGroupName);
8383
Persons are created concurrently, and `await WaitCallLimitPerSecondAsync()` is also applied to avoid exceeding the call limit.
8484

8585
```csharp
86-
CreatePersonResult[] persons = new CreatePersonResult[PersonCount];
86+
Person[] persons = new Person[PersonCount];
8787
Parallel.For(0, PersonCount, async i =>
8888
{
8989
await WaitCallLimitPerSecondAsync();

0 commit comments

Comments
 (0)