]> git.e2factory.org Git - e2factory.git/commitdiff
e2lib.lua: fix typo in comment
authorRolf Eike Beer <eb@emlix.com>
Tue, 5 Apr 2016 10:56:33 +0000 (12:56 +0200)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:18 +0000 (15:41 +0100)
Signed-off-by: Rolf Eike Beer <eb@emlix.com>
generic/e2lib.lua

index b0cf1ac96572e71106ecea7846e77190356a09fc..dc8aeaa87fc958bbb88cc80c62e234da19710215 100644 (file)
@@ -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")