summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-11 15:42:12 +0200
committerwm4 <wm4@nowhere>2014-05-11 15:42:12 +0200
commitf5be96a6e5e26b6482461e360ddaebb2bbe46393 (patch)
tree593a5955fb620c258df139ba50d05842060165ef
parent31663beeac3643efa4d4f179956afdfb8eea676f (diff)
downloadmpv-f5be96a6e5e26b6482461e360ddaebb2bbe46393.tar.bz2
mpv-f5be96a6e5e26b6482461e360ddaebb2bbe46393.tar.xz
manpage: minor corrections
-rw-r--r--DOCS/man/en/input.rst2
-rw-r--r--DOCS/man/en/lua.rst12
-rw-r--r--DOCS/man/en/mpv.rst4
3 files changed, 10 insertions, 8 deletions
diff --git a/DOCS/man/en/input.rst b/DOCS/man/en/input.rst
index 50784db939..c7ddf3dfd7 100644
--- a/DOCS/man/en/input.rst
+++ b/DOCS/man/en/input.rst
@@ -224,7 +224,7 @@ List of Input Commands
mpv (0.2.x and older), this doesn't call the shell. Instead, the command
is run directly, with each argument passed separately. Each argument is
expanded like in `Property Expansion`_. Note that there is a static limit
- of (as of this writing) 10 arguments (this limit could be raised on demand).
+ of (as of this writing) 9 arguments (this limit could be raised on demand).
The program is run in a detached way. mpv doesn't wait until the command
is completed, but continues playback right after spawning it.
diff --git a/DOCS/man/en/lua.rst b/DOCS/man/en/lua.rst
index 3934e067c0..0365fd7a02 100644
--- a/DOCS/man/en/lua.rst
+++ b/DOCS/man/en/lua.rst
@@ -57,7 +57,7 @@ The ``mp`` module is preloaded, although it can be loaded manually with
Run the given command. This is similar to the commands used in input.conf.
See `List of Input Commands`_.
- Returns true on success, or ``nil, error`` on error.
+ Returns ``true`` on success, or ``nil, error`` on error.
``mp.commandv(arg1, arg2, ...)``
Similar to ``mp.command``, but pass each command argument as separate
@@ -145,7 +145,8 @@ The ``mp`` module is preloaded, although it can be loaded manually with
or a map, this would fail with empty tables. Also, there are not many
properties for which it makes sense to use this, instead of
``set_property``, ``set_property_bool``, ``set_property_number``.
- For these reasons, this function should probably be avoided for now.
+ For these reasons, this function should probably be avoided for now, except
+ for properties that use tables natively.
``mp.get_time()``
Return the current mpv internal time in seconds as a number. This is
@@ -288,7 +289,8 @@ The ``mp`` module is preloaded, although it can be loaded manually with
``resume()`` essentially unpauses the timer.
``kill()``
- Disable the timer. Resets the elapsed time.
+ Disable the timer. Resets the elapsed time. ``resume()`` will
+ restart the timer.
``resume()``
Restart the timer. If the timer was disabled with ``stop()``, this
@@ -466,8 +468,8 @@ List of events
``pause``
Playback was paused. This also happens when for example the player is
paused on low network cache. Then the event type indicates the pause state
- (like the property "pause" as opposed to the "core-idle" propetty), and you
- might be multiple ``pause`` events in a row.
+ (like the property "pause" as opposed to the "core-idle" property), and you
+ might receive multiple ``pause`` events in a row.
``unpause``
Playback was unpaused. See above for details.
diff --git a/DOCS/man/en/mpv.rst b/DOCS/man/en/mpv.rst
index 0db857dd96..37baded366 100644
--- a/DOCS/man/en/mpv.rst
+++ b/DOCS/man/en/mpv.rst
@@ -483,8 +483,8 @@ behavior of mpv.
``MPV_VERBOSE`` (see also ``-v`` and ``--msg-level``)
Set the initial verbosity level across all message modules (default: 0).
- The resulting verbosity corresponds to that of ``--msg-level=5`` plus the
- value of ``MPV_VERBOSE``.
+ This is an integer, and the resulting verbosity corresponds to the number
+ of ``--v`` options passed to the command line.
``MPV_LEAK_REPORT``
If set to ``1``, enable internal talloc leak reporting. Note that this can