Skip to content

Commit c6c7cef

Browse files
committed
Fix misalignment
1 parent f5ef898 commit c6c7cef

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

compiler/app/Main.hs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ data Flag
5858

5959
options :: [OptDescr Flag]
6060
options =
61-
[ Option ['i'] ["ir"] (NoArg IRMode) "ir interactive mode"
62-
, Option ['j'] ["json"] (NoArg JSONIRMode) "ir json interactive mode"
63-
, Option [] ["no-rawopt"] (NoArg NoRawOpt) "disable Raw optimization"
64-
, Option ['v'] ["verbose"] (NoArg Verbose) "verbose output"
65-
, Option ['d'] ["debug"] (NoArg Debug) "debugging information in the .js file"
66-
, Option ['l'] ["lib"] (NoArg LibMode) "compiling a library"
67-
, Option ['h'] ["help"] (NoArg Help) "print usage"
68-
, Option ['o'] ["output"] (ReqArg OutputFile "FILE") "output FILE"
61+
[ Option ['i'] ["ir"] (NoArg IRMode) "ir interactive mode"
62+
, Option ['j'] ["json"] (NoArg JSONIRMode) "ir json interactive mode"
63+
, Option [] ["no-rawopt"] (NoArg NoRawOpt) "disable Raw optimization"
64+
, Option ['v'] ["verbose"] (NoArg Verbose) "verbose output"
65+
, Option ['d'] ["debug"] (NoArg Debug) "debugging information in the .js file"
66+
, Option ['l'] ["lib"] (NoArg LibMode) "compiling a library"
67+
, Option ['h'] ["help"] (NoArg Help) "print usage"
68+
, Option ['o'] ["output"] (ReqArg OutputFile "FILE") "output FILE"
6969
]
7070

7171
-- debugTokens (Right tks) =

0 commit comments

Comments
 (0)