aboutsummaryrefslogtreecommitdiff
path: root/gem/ex4.lua
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2022-03-18 12:12:39 +0100
committerCaleb Maclennan <caleb@alerque.com>2022-03-19 17:13:15 +0300
commit601ad8d59f11d7180015d0ecfb9d0a8d67f6f5c1 (patch)
treee3b9c152b9ff8a431d1431edb0a42d051d256f13 /gem/ex4.lua
parent480c05257211b3e566f33fdf8cf051233e2dab30 (diff)
downloadluasocket-601ad8d59f11d7180015d0ecfb9d0a8d67f6f5c1.tar.gz
luasocket-601ad8d59f11d7180015d0ecfb9d0a8d67f6f5c1.tar.bz2
luasocket-601ad8d59f11d7180015d0ecfb9d0a8d67f6f5c1.zip
refactor: Address issues raised by linter
Diffstat (limited to 'gem/ex4.lua')
-rw-r--r--gem/ex4.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gem/ex4.lua b/gem/ex4.lua
index c670e0e..c48b77e 100644
--- a/gem/ex4.lua
+++ b/gem/ex4.lua
@@ -1,4 +1,4 @@
1local qp = filter.chain(normalize(CRLF), encode("quoted-printable"), 1local qp = filter.chain(normalize(CRLF), encode("quoted-printable"),
2 wrap("quoted-printable")) 2 wrap("quoted-printable"))
3local input = source.chain(source.file(io.stdin), qp) 3local input = source.chain(source.file(io.stdin), qp)
4local output = sink.file(io.stdout) 4local output = sink.file(io.stdout)