summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2014-04-27 22:03:50 -0700
committerKevin Mitchell <kevmitch@gmail.com>2014-04-29 08:31:44 -0700
commit164cfeba56af9806f7b164842d50a4ea1627979a (patch)
tree548acf946ae1433756c5e825c1a0b507bd4ca948
parentf6f8dc7782a411d1befadcc8425990451047f6cf (diff)
downloadmpv-164cfeba56af9806f7b164842d50a4ea1627979a.tar.bz2
mpv-164cfeba56af9806f7b164842d50a4ea1627979a.tar.xz
man: grammar tweak of mp.add_timeout()
-rw-r--r--DOCS/man/en/lua.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/DOCS/man/en/lua.rst b/DOCS/man/en/lua.rst
index 2a3132110c..89f914201b 100644
--- a/DOCS/man/en/lua.rst
+++ b/DOCS/man/en/lua.rst
@@ -268,9 +268,9 @@ The ``mp`` module is preloaded, although it can be loaded manually with
``mp.add_timeout(seconds, fn)``
Call the given function fn when the given number of seconds has elapsed.
- Note that the number of seconds can be fractional. As of now, the timer
- precision may be as worse as 50 ms, though. (This will be improved in the
- future.)
+ Note that the number of seconds can be fractional. For now, the timer's
+ resolution may be as low as 50 ms, although this will be improved in the
+ future.
This is a one-shot timer: it will be removed when it's fired.