diff options
author | wm4 <wm4@nowhere> | 2014-02-11 15:21:41 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-02-11 15:22:02 +0100 |
commit | 37a4e6b583b26289abfa3d91ed9cbe1bfdce1b0f (patch) | |
tree | e6e528973f429f5a00926b04808af4578ba471e3 /DOCS/man | |
parent | 891f58e834d8bc8e5de1dbd8939630655b5dad7a (diff) | |
download | mpv-37a4e6b583b26289abfa3d91ed9cbe1bfdce1b0f.tar.bz2 mpv-37a4e6b583b26289abfa3d91ed9cbe1bfdce1b0f.tar.xz |
manpage: use Lua for Lua example
Diffstat (limited to 'DOCS/man')
-rw-r--r-- | DOCS/man/en/lua.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DOCS/man/en/lua.rst b/DOCS/man/en/lua.rst index c87388bfc6..c065a093dd 100644 --- a/DOCS/man/en/lua.rst +++ b/DOCS/man/en/lua.rst @@ -54,7 +54,7 @@ The ``mp`` module is preloaded, although it can be loaded manually with :: - mp.command("loadfile " + filename + " append") + mp.command("loadfile " .. filename .. " append") mp.commandv("loadfile", filename, "append") These two commands are equivalent, except that the first version breaks |