From d07ecd6351a26d83b5093447dc2909c95b1d8527 Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Fri, 23 Apr 2010 15:16:14 -0500 Subject: [PATCH] Fix an error in the cursor tutorial. Fixes issue #28 --- doc/cursor_tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cursor_tutorial.rst b/doc/cursor_tutorial.rst index f5dd0eb..be0b83a 100644 --- a/doc/cursor_tutorial.rst +++ b/doc/cursor_tutorial.rst @@ -85,7 +85,7 @@ What if you only want n items or pages returned? You pass into the items() or pa .. code-block :: python # Only iterate through the first 200 statuses - for status in Cursor(api.user_timeline).limit(200): + for status in Cursor(api.user_timeline).items(200): process_status(status) # Only iterate through the first 3 pages -- 2.25.1