Skip to content

Commit 63f7290

Browse files
committed
Fix reordered comment
1 parent 4a625a4 commit 63f7290

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/amalg.lua

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,18 @@ end
3939
-- * `-f`: use embedded modules only as a fallback
4040
-- * `-h`: print help
4141
-- * `-i <pattern>`: ignore modules in the cache file matching the
42+
-- given pattern (can be given multiple times)
4243
-- * `-o <file>`: specify output file (default is `stdout`)
4344
-- * `-p <file>`: use file contents as prefix code for the
4445
-- amalgamated script (i.e. usually as a package module stub)
4546
-- * `-s <file>`: specify main script to bundle
46-
-- given pattern (can be given multiple times)
47-
-- * `-t <plugin>`: use transformation plugin
48-
-- * `-v <file>`: embed as virtual resource
47+
-- * `-t <plugin>`: use transformation plugin (can be given multiple
48+
-- times)
49+
-- * `-v <file>`: embed as virtual resource (can be given multiple
50+
-- times)
4951
-- * `-x`: also embed compiled C modules
50-
-- * `-z <plugin>`: use compression plugin
52+
-- * `-z <plugin>`: use (de-)compression plugin (can be given
53+
-- multiple times)
5154
--
5255
-- Other arguments are assumed to be module names. For an inconsistent
5356
-- command line (e.g. duplicate options) a warning is printed to the
@@ -534,7 +537,7 @@ local function amalgamate( ... )
534537
-- and an extra searcher function is added at the end of
535538
-- `package.searchers`.
536539
if packagefieldname == "postload" then
537-
out:write([=[
540+
out:write( [=[
538541
do
539542
local assert = assert
540543
local type = assert( type )

0 commit comments

Comments
 (0)