summaryrefslogtreecommitdiff
path: root/Doc/howto/curses.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/howto/curses.rst')
-rw-r--r--Doc/howto/curses.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/curses.rst b/Doc/howto/curses.rst
index 6f537088cb..12fb936a57 100644
--- a/Doc/howto/curses.rst
+++ b/Doc/howto/curses.rst
@@ -3,7 +3,7 @@
**********************************
:Author: A.M. Kuchling, Eric S. Raymond
-:Release: 2.02
+:Release: 2.03
.. topic:: Abstract
@@ -367,8 +367,8 @@ It's possible to change this behavior with the method :meth:`nodelay`. After
``nodelay(1)``, :meth:`getch` for the window becomes non-blocking and returns
``curses.ERR`` (a value of -1) when no input is ready. There's also a
:func:`halfdelay` function, which can be used to (in effect) set a timer on each
-:meth:`getch`; if no input becomes available within the number of milliseconds
-specified as the argument to :func:`halfdelay`, curses raises an exception.
+:meth:`getch`; if no input becomes available within a specified
+delay (measured in tenths of a second), curses raises an exception.
The :meth:`getch` method returns an integer; if it's between 0 and 255, it
represents the ASCII code of the key pressed. Values greater than 255 are