1
1
mirror of https://github.com/tweag/ormolu.git synced 2024-10-26 15:35:11 +03:00

Give start/end line variables better names in the help text

This commit is contained in:
Mark Karpov 2020-04-24 23:10:23 +02:00
parent 5bffeffa05
commit d579a48f48
No known key found for this signature in database
GPG Key ID: 8564658B2889FF7C

View File

@ -174,10 +174,12 @@ configParser =
<*> ( RegionIndices
<$> (optional . option auto . mconcat)
[ long "start-line",
help "Start line of the region to format (lines start from 1)"
metavar "START",
help "Start line of the region to format (starts from 1)"
]
<*> (optional . option auto . mconcat)
[ long "end-line",
metavar "END",
help "End line of the region to format (inclusive)"
]
)