diff --git a/src/registry.py b/src/registry.py index a58a4eb3b..fc864bc9e 100644 --- a/src/registry.py +++ b/src/registry.py @@ -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()