Skip to content

Commit 2963da2

Browse files
committed
Change in fs script
1 parent fd82954 commit 2963da2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

demo/fsharp-demo.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
open CommandLine
44

55
type options = {
6-
[<Option(HelpText = "Define a string value here.")>] stringValue : string;
7-
[<Option('i', Min = 3, Max = 4, HelpText = "Define a int sequence here.")>] intSequence : seq<int>;
8-
[<Option('x', HelpText = "Define a boolean or switch value here.")>] boolValue : bool;
6+
[<Option(HelpText = "Input a string value here.")>] stringValue : string;
7+
[<Option('i', Min = 3, Max = 4, HelpText = "Input a int sequence here.")>] intSequence : seq<int>;
8+
[<Option('x', HelpText = "Define a switch (boolean) here.")>] boolValue : bool;
99
[<Value(0)>] longValue : int64 option;
1010
}
1111

0 commit comments

Comments
 (0)