Typo fix s/reprsntation/representation
This commit is contained in:
parent
45e0ff16ca
commit
d5668403ae
@ -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).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -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).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -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
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user