You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lambda-buffers-frontend/app/Main.hs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -70,15 +70,15 @@ buildOptsP =
70
70
( strOption
71
71
( long "gen-class"
72
72
<> metavar "CLASS"
73
-
<> help "Class to code generate implementations for (if empty only the type definitions will be printed)"
73
+
<> help "Class to code generate implementations for (if empty only the type definitions will be printed). For example: --gen-class Prelude.Eq --gen-class Prelude.Json"
74
74
<> showDefault
75
75
)
76
76
)
77
77
<*> many
78
78
( strOption
79
79
( long "gen-opt"
80
80
<> metavar "ARGUMENT"
81
-
<> help "Additional options to provide to the Codegen module"
81
+
<> help "Additional options to provide to the Codegen module. For example: --gen-opt=--config --gen-opt=haskell.json"
82
82
)
83
83
)
84
84
<*> flag
@@ -107,14 +107,14 @@ formatOptsP =
107
107
( long "file"
108
108
<> short 'f'
109
109
<> metavar "FILEPATH"
110
-
<> help "LambdaBuffers file to format"
110
+
<> help ".lbf schema to format"
111
111
)
112
112
<*> flag
113
113
False
114
114
True
115
115
( long "inplace"
116
116
<> short 'i'
117
-
<> help "Replace the file content with the formatted version"
117
+
<> help "Replace the .lbf schema content with the formatted version"
0 commit comments