Skip to content

Commit 701eb87

Browse files
authored
Merge pull request #46272 from nrobert/patch-2
Changing CreatePersonResult to Person
2 parents 2cb7349 + c2a23b2 commit 701eb87

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)