]> jfr.im git - z_archive/twitter.git/commitdiff
Trivial typo fixes
authorJustin Clift <redacted>
Tue, 11 Mar 2014 03:27:32 +0000 (03:27 +0000)
committerJustin Clift <redacted>
Tue, 11 Mar 2014 03:27:32 +0000 (03:27 +0000)
README
twitter/cmdline.py

diff --git a/README b/README
index 815017063d58c829feacc4fe8b3ee27da99c3526..f1d14dc6adcb951381ee55ce66bb31507731d75e 100644 (file)
--- a/README
+++ b/README
@@ -78,7 +78,7 @@ The Twitter API is documented at:
 
 Examples::
 
-```python 
+```python
 from twitter import *
 
 # see "Authentication" section below for tokens and keys
@@ -258,7 +258,7 @@ to do this. Please see the twitter.oauth_dance module to see how this
 is done. If you are making a command-line app, you can use the
 oauth_dance() function directly.
 
-Performing the "oauth dance" gets you an ouath token and oauth secret
+Performing the "oauth dance" gets you an oauth token and oauth secret
 that authenticate the user with Twitter. You should save these for
 later so that the user doesn't have to do the oauth dance again.
 
index aafa6a60e18daed24257a2701edfd76476fc2771..31cfee57f63d87b5168f6116f512d077111f08b5 100644 (file)
@@ -369,7 +369,7 @@ class Action(object):
 
     def ask(self, subject='perform this action', careful=False):
         '''
-        Requests fromhe user using `raw_input` if `subject` should be
+        Requests from the user using `raw_input` if `subject` should be
         performed. When `careful`, the default answer is NO, otherwise YES.
         Returns the user answer in the form `True` or `False`.
         '''