Fix some spell errors in tutorial
authorJosh Roesslein <jroesslein@gmail.com>
Tue, 29 Sep 2009 05:44:32 +0000 (00:44 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Tue, 29 Sep 2009 05:44:32 +0000 (00:44 -0500)
tutorial/t6.py

index 8ab2100db67dc656119815d03df8e5dd16b6f5a0..b3497216795aa4d2361798077b22ff7acf2e690f 100644 (file)
@@ -54,7 +54,7 @@ for status in cursor.items(limit=30):
 print ''
 
 """
-As you can see this is much simplier and all the
+As you can see this is much simpler and all the
 pagination is managed for us automatically.
 We pass into the Cursor constructor the API method
 we wish to paginate. Cursor then has two methods that returns
@@ -64,8 +64,8 @@ an iterator:
 
 If limit is not specified iteration will continue until twitter
 stops sending us pages (pagination limit reached or no more data).
-The limit for items() is the maxium number of items to iterate.
-For pages() limit is the maxium number of pages to iterate.
+The limit for items() is the maximum number of items to iterate.
+For pages() limit is the maximum number of pages to iterate.
 The page size varies for each API method, so read the wiki page
 for more details.