Fix a typo in a comment

I just fixed a minor typo: "throws" is misspelled as "thows".
This commit is contained in:
Ben Edelman
2014-12-15 01:37:19 -05:00
parent a8205bb509
commit 01b58ba04e
+1 -1
View 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