Skip to content

Commit 906a374

Browse files
authored
Merge pull request #489 from atillabyte/patch-1
Update README.md
2 parents 85ef0f9 + d35072a commit 906a374

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class Options {
8181
HelpText = "Prints all messages to standard output.")]
8282
public bool Verbose { get; set; }
8383

84-
[Option(Default = "中文",
84+
[Option(DefaultValue = "中文",
8585
HelpText = "Content language.")]
8686
public string Language { get; set; }
8787

@@ -101,7 +101,7 @@ static int Main(string[] args) {
101101
type options = {
102102
[<Option('r', "read", Required = true, HelpText = "Input files.")>] files : seq<string>;
103103
[<Option(HelpText = "Prints all messages to standard output.")>] verbose : bool;
104-
[<Option(Default = "русский", HelpText = "Content language.")>] language : string;
104+
[<Option(DefaultValue = "русский", HelpText = "Content language.")>] language : string;
105105
[<Value(0, MetaName="offset", HelpText = "File offset.")>] offset : int64 option;
106106
}
107107
```
@@ -125,7 +125,7 @@ Class Options
125125
HelpText:="Prints all messages to standard output.")>
126126
Public Property Verbose As Boolean
127127

128-
<CommandLine.Option(Default:="中文",
128+
<CommandLine.Option(DefaultValue:="中文",
129129
HelpText:="Content language.")>
130130
Public Property Language As String
131131

0 commit comments

Comments
 (0)