Skip to content

Commit 39b4223

Browse files
committed
fix a couple typos in change feed doc
1 parent 1cd7b17 commit 39b4223

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cosmos-db/change-feed-pull-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The change feed pull model is part of the [Azure Cosmos DB SDK V3](https://githu
1919
2020
## Using FeedRange for parallelization
2121

22-
In the change feed pull model, you can use the `FeedRange` to parallelize the processing of the change feed. A `FeedRange` represents a single [physical partition].(partition-data.md#physical-partitions).
22+
In the change feed pull model, you can use the `FeedRange` to parallelize the processing of the change feed. A `FeedRange` represents a single [physical partition](partition-data.md#physical-partitions).
2323

2424
Here's an example showing how to obtain a list of ranges for your container.
2525

@@ -99,7 +99,7 @@ while (iterator.HasMoreResults)
9999
FeedIterator<User> iteratorThatResumesFromLastPoint = container.GetChangeFeedIterator<User>(lastProcessedToken);
100100
```
101101

102-
## Consuming an entire container
102+
## Consuming an entire container's changes
103103

104104
Sometimes you might not need any parallelization when reading the change feed. By creating a `FeedIterator` without any `FeedRange` input, you can read an entire container's change feed on one machine:
105105

0 commit comments

Comments
 (0)