Skip to content

Commit c1dadb0

Browse files
authored
Merge pull request #114675 from timsander1/master
fix small typo in change feed pull model doc
2 parents 00b8380 + 4fd113f commit c1dadb0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: tisande
66
ms.service: cosmos-db
77
ms.devlang: dotnet
88
ms.topic: conceptual
9-
ms.date: 05/06/2020
9+
ms.date: 05/10/2020
1010
ms.reviewer: sngun
1111
---
1212

@@ -132,9 +132,9 @@ string continuation = null;
132132
while (iterator.HasMoreResults)
133133
{
134134
FeedResponse<User> users = await iterator.ReadNextAsync();
135-
continuation = orders.ContinuationToken;
135+
continuation = users.ContinuationToken;
136136

137-
foreach (User user in Users)
137+
foreach (User user in users)
138138
{
139139
Console.WriteLine($"Detected change for user with id {user.id}");
140140
}

0 commit comments

Comments
 (0)