We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9dbd58f + 32d628f commit e2469b3Copy full SHA for e2469b3
README.md
@@ -32,7 +32,7 @@ foreach (var post in subreddit.New.Take(25))
32
33
```csharp
34
var all = reddit.RSlashAll;
35
-foreach (var post in all) // BAD
+foreach (var post in all.New) // BAD
36
{
37
// ...
38
}
@@ -42,7 +42,7 @@ This will cause you to page through everything that has ever been posted on Redd
42
43
44
45
-foreach (var post in all.Take(25))
+foreach (var post in all.New.Take(25))
46
47
48
0 commit comments