From 42762bb439bd8d9aa0d84c7a54a8639812ef49f1 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 10 Dec 2019 13:04:53 -0800 Subject: [PATCH] Fix typo --- wx/lib/agw/floatspin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wx/lib/agw/floatspin.py b/wx/lib/agw/floatspin.py index d365cb94..3bf99a72 100644 --- a/wx/lib/agw/floatspin.py +++ b/wx/lib/agw/floatspin.py @@ -1292,7 +1292,7 @@ class FixedPoint(object): The :class:`FixedPoint` constructor can be passed an int, long, string, float, :class:`FixedPoint`, or any object convertible to a float via `float()` or to an - integer via `inf()`. Passing a precision is optional; if specified, the + integer via `int()`. Passing a precision is optional; if specified, the precision must be a non-negative int. There is no inherent limit on the size of the precision, but if very very large you'll probably run out of memory.