Typo fix s/reprsntation/representation

This commit is contained in:
Abhishek L 2014-08-12 23:44:35 +05:30
parent 45e0ff16ca
commit d5668403ae
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ from hy.models import HyObject
class HyComplex(HyObject, complex): class HyComplex(HyObject, complex):
""" """
Internal represntation of a Hy Complex. May raise a ValueError as if Internal representation of a Hy Complex. May raise a ValueError as if
complex(foo) was called, given HyComplex(foo). complex(foo) was called, given HyComplex(foo).
""" """

View File

@ -23,7 +23,7 @@ from hy.models import HyObject
class HyFloat(HyObject, float): class HyFloat(HyObject, float):
""" """
Internal represntation of a Hy Float. May raise a ValueError as if Internal representation of a Hy Float. May raise a ValueError as if
float(foo) was called, given HyFloat(foo). float(foo) was called, given HyFloat(foo).
""" """

View File

@ -24,7 +24,7 @@ from hy._compat import long_type
class HyInteger(HyObject, long_type): class HyInteger(HyObject, long_type):
""" """
Internal represntation of a Hy Integer. May raise a ValueError as if Internal representation of a Hy Integer. May raise a ValueError as if
int(foo) was called, given HyInteger(foo). On python 2.x long will int(foo) was called, given HyInteger(foo). On python 2.x long will
be used instead be used instead
""" """