Skip to content

Commit b83e065

Browse files
committed
spelling
1 parent d8ccc5d commit b83e065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cosmos-db/how-to-migrate-from-bulk-executor-library.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ And if you want to do bulk *delete* (similar to using [BulkExecutor.BulkDeleteAs
4242

4343
## Capture task result state
4444

45-
In the previous code examples, you have created a concurrent list of tasks, and called the `CaptureOperationResponse` method on each of those tasks. This method is an extension that lets us maintain a *similar response schema* as BulkExecutor, by capturing any errors and tracking the [request units usage](request-units.md).
45+
In the previous code examples, we have created a concurrent list of tasks, and called the `CaptureOperationResponse` method on each of those tasks. This method is an extension that lets us maintain a *similar response schema* as BulkExecutor, by capturing any errors and tracking the [request units usage](request-units.md).
4646

4747
:::code language="csharp" source="~/samples-cosmosdb-dotnet-v3/Microsoft.Azure.Cosmos.Samples/Usage/BulkExecutorMigration/Program.cs" ID="CaptureOperationResult":::
4848

@@ -52,7 +52,7 @@ Where the `OperationResponse` is declared as:
5252

5353
## Execute operations concurrently
5454

55-
After the list of tasks are defined, wait until they are all complete. To track the scope of the entire list of Tasks, we use this helper class:
55+
To track the scope of the entire list of Tasks, we use this helper class:
5656

5757
:::code language="csharp" source="~/samples-cosmosdb-dotnet-v3/Microsoft.Azure.Cosmos.Samples/Usage/BulkExecutorMigration/Program.cs" ID="Operation":::
5858

0 commit comments

Comments
 (0)