Skip to content

Commit

Permalink
clarify detail in the options (see #252)
Browse files Browse the repository at this point in the history
  • Loading branch information
dorchard committed Dec 20, 2022
1 parent cca921b commit 03642dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for the many other options that can be explored for visualisation purposes.
```
Usage: fortran-src [OPTION...] <file>
-v VERSION, -F VERSION --fortranVersion=VERSION Fortran version to use, format: Fortran[66/77/77Legacy/77Extended/90]
-a ACTION --action=ACTION lex or parse action
-a ACTION --action=ACTION choose the action, possible values: lex|parse
-t --typecheck parse and run typechecker
-R --rename parse and rename variables
-B --bblocks analyse basic blocks
Expand Down
2 changes: 1 addition & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ options =
, Option ['a']
["action"]
(ReqArg (\a opts -> opts { action = read a }) "ACTION")
"lex or parse action"
"choose the action, possible values: lex|parse"
, Option ['t']
["typecheck"]
(NoArg $ \ opts -> opts { action = Typecheck })
Expand Down

0 comments on commit 03642dd

Please sign in to comment.