Slightly better wording (and matches Float's wording)

This commit is contained in:
James Vega 2004-11-09 18:41:03 +00:00
parent 0263eb95a8
commit 2fb7041627
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ class Float(Value):
self.error()
class PositiveFloat(Float):
"""Value must be a float-point number greater than zero."""
"""Value must be a floating-point number greater than zero."""
def setValue(self, v):
if v <= 0:
self.error()