Fix a typo in a comment
authorBen Edelman <namlede@users.noreply.github.com>
Mon, 15 Dec 2014 06:37:19 +0000 (01:37 -0500)
committerBen Edelman <namlede@users.noreply.github.com>
Mon, 15 Dec 2014 06:37:19 +0000 (01:37 -0500)
I just fixed a minor typo: "throws" is misspelled as "thows".

requests/compat.py

index be5a1ed6c141141e7c362d820ced0f6db986c769..c07726ee45ddd8140c6037ff9d493b283e8070b2 100644 (file)
@@ -76,7 +76,7 @@ is_solaris = ('solar==' in str(sys.platform).lower())   # Complete guess.
 try:
     import simplejson as json
 except (ImportError, SyntaxError):
-    # simplejson does not support Python 3.2, it thows a SyntaxError
+    # simplejson does not support Python 3.2, it throws a SyntaxError
     # because of u'...' Unicode literals.
     import json