From: Rolf Eike Beer Date: Tue, 5 Apr 2016 10:56:33 +0000 (+0200) Subject: e2lib.lua: fix typo in comment X-Git-Tag: e2factory-2.3.15rc1~5 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=af21710a17c6ef9e83e10e44a289b5f2735d14ac;p=e2factory.git e2lib.lua: fix typo in comment Signed-off-by: Rolf Eike Beer --- diff --git a/generic/e2lib.lua b/generic/e2lib.lua index b0cf1ac..dc8aeaa 100644 --- a/generic/e2lib.lua +++ b/generic/e2lib.lua @@ -2103,7 +2103,7 @@ end -- @param src string: source name -- @param dst string: destination name -- @return bool --- @return the last line ouf captured output +-- @return the last line of captured output function e2lib.mv(src, dst) assert(type(src) == "string" and type(dst) == "string") assert(string.len(src) > 0 and string.len(dst) > 0) @@ -2116,7 +2116,7 @@ end -- @param dst string: destination name -- @param recursive True enables recursive copying. The default is false. -- @return bool --- @return the last line ouf captured output +-- @return the last line of captured output function e2lib.cp(src, dst, recursive) local argv @@ -2256,7 +2256,7 @@ end --- call the gzip command -- @param argv table: argument vector -- @return bool --- @return the last line ouf captured output +-- @return the last line of captured output function e2lib.gzip(argv) assert(type(argv) == "table")