Skip to content

Commit ddb32f0

Browse files
committed
Fixed small typo
1 parent d3dbaa3 commit ddb32f0

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
/// Converts an `Option<'T>` to an `ActionInput<'T>` for usage with the command builders.
228228
let ofOption (o: Option<'T>) =

0 commit comments

Comments
 (0)