Skip to content

Commit 5b553bb

Browse files
authored
Merge pull request #23 from mrboring-forks/main
Fixed small typo
2 parents 0fe1e13 + ddb32f0 commit 5b553bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FSharp.SystemCommandLine/Inputs.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ module Input =
222222
/// Sets a value that indicates whether multiple arguments are allowed for each option identifier token. (Defaults to 'false'.)
223223
let allowMultipleArgumentsPerToken (input: ActionInput<'T>) =
224224
input
225-
|> editOption (fun a -> a.AllowMultipleArgumentsPerToken <- true)
225+
|> editOption (fun o -> o.AllowMultipleArgumentsPerToken <- true)
226226

227227
/// Hides an option or argument from the help output.
228228
let hidden (input: ActionInput<'T>) =

0 commit comments

Comments
 (0)