From 0f64978a08fe36281b1a24e27485c821e5cc4d0d Mon Sep 17 00:00:00 2001 From: Clayton A Davis Date: Wed, 18 Oct 2017 14:01:34 -0400 Subject: [PATCH] Fix typo in cursor example --- docs/usage/special_functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/special_functions.rst b/docs/usage/special_functions.rst index cde8f99..9d40076 100644 --- a/docs/usage/special_functions.rst +++ b/docs/usage/special_functions.rst @@ -45,7 +45,7 @@ Another example: .. code-block:: python - results = twitter.cursor(t.get_mentions_timeline) + results = twitter.cursor(twitter.get_mentions_timeline) for result in results: print(result['id_str'])