Skip to content

Commit e2469b3

Browse files
authored
Merge pull request #18 from ardaozkal/patch-1
Fixed the example
2 parents 9dbd58f + 32d628f commit e2469b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ foreach (var post in subreddit.New.Take(25))
3232

3333
```csharp
3434
var all = reddit.RSlashAll;
35-
foreach (var post in all) // BAD
35+
foreach (var post in all.New) // BAD
3636
{
3737
// ...
3838
}
@@ -42,7 +42,7 @@ This will cause you to page through everything that has ever been posted on Redd
4242

4343
```csharp
4444
var all = reddit.RSlashAll;
45-
foreach (var post in all.Take(25))
45+
foreach (var post in all.New.Take(25))
4646
{
4747
// ...
4848
}

0 commit comments

Comments
 (0)