Merge pull request #633 from theanalyst/fix/typos

Typo fix s/reprsntation/representation
This commit is contained in:
Berker Peksag 2014-08-13 07:12:21 +03:00
commit 4dbdfde24d
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ from hy.models import HyObject
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).
"""

View File

@ -23,7 +23,7 @@ from hy.models import HyObject
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).
"""

View File

@ -24,7 +24,7 @@ from hy._compat import 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
be used instead
"""