From d5668403aef3868bb4b328daa95ab965f3841efd Mon Sep 17 00:00:00 2001 From: Abhishek L Date: Tue, 12 Aug 2014 23:44:35 +0530 Subject: [PATCH] Typo fix s/reprsntation/representation --- hy/models/complex.py | 2 +- hy/models/float.py | 2 +- hy/models/integer.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hy/models/complex.py b/hy/models/complex.py index 9647997..26ac863 100644 --- a/hy/models/complex.py +++ b/hy/models/complex.py @@ -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). """ diff --git a/hy/models/float.py b/hy/models/float.py index 184c3a3..ffcf455 100644 --- a/hy/models/float.py +++ b/hy/models/float.py @@ -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). """ diff --git a/hy/models/integer.py b/hy/models/integer.py index 0eacef7..614520f 100644 --- a/hy/models/integer.py +++ b/hy/models/integer.py @@ -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 """