Skip to content

Commit

Permalink
docs: README fix (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig authored Nov 12, 2024
1 parent c87e260 commit 001a1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,6 @@ var feedFromQuery = await client.EventFeedAsync<Person>(FQL($"Person.all().event

// EventFeedAsync() returns a `FeedEnumerable` instance that can act as an `AsyncEnumerator`.
// Use `foreach()` to iterate through the pages of events.
await foreach (var page in feed)
{
foreach (var evt in page.Events)
Expand All @@ -330,6 +329,7 @@ await foreach (var page in feed)
Console.WriteLine($"First Name: {person.FirstName} - Last Name: {person.LastName} - Age: {person.Age}");
}
}
```

## Event Streaming

Expand Down

0 comments on commit 001a1fa

Please sign in to comment.