Skip to content

Commit ad300e3

Browse files
committed
Fix parameter list code formatting
1 parent 16c1c42 commit ad300e3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/DocoptNet/Docopt.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ void SetDefaultPrintExitHandlerIfNecessary(bool exit)
141141
internal static class Internal
142142
{
143143
public static IDictionary<string, ArgValue>? Apply(Docopt docopt, string doc, IEnumerable<string> argv,
144-
bool help = true, object? version = null,
145-
bool optionsFirst = false, bool exit = false) =>
144+
bool help = true, object? version = null,
145+
bool optionsFirst = false, bool exit = false) =>
146146
docopt.Apply(doc, Tokens.From(argv), help, version, optionsFirst, exit)?.ToValueDictionary();
147147

148148
public static IEnumerable<T> GetNodes<T>(string doc,
@@ -225,7 +225,7 @@ protected void OnPrintExit(string doc, int errorCode = 0)
225225
/// Parse command-line argument vector.
226226
/// </summary>
227227
internal static IList<LeafPattern> ParseArgv(Tokens tokens, ICollection<Option> options,
228-
bool optionsFirst = false)
228+
bool optionsFirst = false)
229229
{
230230
// If options_first:
231231
// argv ::= [ long | shorts ]* [ argument ]* [ '--' [ argument ]* ] ;

0 commit comments

Comments
 (0)