From 25ed64221a1d7591386d52aa79663ee46636f60f Mon Sep 17 00:00:00 2001 From: bananagram Date: Sun, 4 May 2014 19:03:39 -0500 Subject: [PATCH] Fix a typo in the usage summary --- .../assets/opencomputers/lua/component/internet/bin/wget.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/assets/opencomputers/lua/component/internet/bin/wget.lua b/src/main/resources/assets/opencomputers/lua/component/internet/bin/wget.lua index 36122de81..257d49916 100644 --- a/src/main/resources/assets/opencomputers/lua/component/internet/bin/wget.lua +++ b/src/main/resources/assets/opencomputers/lua/component/internet/bin/wget.lua @@ -14,7 +14,7 @@ local args, options = shell.parse(...) if #args < 1 then io.write("Usage: wget [-fq] url \n") io.write(" -f: Force overwriting existing files.\n") - io.write(" -q: Quit mode - no status messages.") + io.write(" -q: Quiet mode - no status messages.") return end @@ -74,4 +74,4 @@ else f:close() fs.remove(filename) io.stderr:write("HTTP request failed: " .. response .. "\n") -end \ No newline at end of file +end