Skip to content

Commit 9a25d9f

Browse files
committed
renamed parameter
1 parent 9d30a39 commit 9a25d9f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/FSharp.SystemCommandLine/CommandBuilders.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ type BaseCommandBuilder<'A, 'B, 'C, 'D, 'E, 'F, 'G, 'H, 'I, 'J, 'K, 'L, 'M, 'N,
124124
{ spec with SubCommands = spec.SubCommands @ [ subCommand ] }
125125

126126
[<CustomOperation("addCommand")>]
127-
member this.AddCommand (spec: CommandSpec<'Inputs, 'Output>, subCommands: System.CommandLine.Command) =
128-
{ spec with SubCommands = spec.SubCommands @ [ subCommands ] }
127+
member this.AddCommand (spec: CommandSpec<'Inputs, 'Output>, subCommand: System.CommandLine.Command) =
128+
{ spec with SubCommands = spec.SubCommands @ [ subCommand ] }
129129

130130
[<CustomOperation("addCommands")>]
131131
member this.AddCommands (spec: CommandSpec<'Inputs, 'Output>, subCommands: System.CommandLine.Command seq) =

0 commit comments

Comments
 (0)