Skip to content

Commit a358596

Browse files
committed
Changed few words in README, again.
1 parent 6a4387f commit a358596

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Notes:
5050
---
5151
The project is and well suited to be included in your application. If you don't merge it to your project tree, you must reference ``CommandLine.dll`` and import ``CommandLine`` and ``CommandLine.Text`` namespaces (or install via NuGet). The help text builder and its support types lives in ``CommandLine.Text`` namespace that is loosely coupled with the parser. However is good to know that ``HelpText`` class will avoid a lot of repetitive coding.
5252

53-
Create a class to receive parsed values:
53+
Define a class to receive parsed values:
5454

5555
```csharp
5656
class Options {
@@ -73,13 +73,13 @@ class Options {
7373
}
7474
```
7575

76-
Add few lines to your Main method:
76+
Consume them:
7777

7878
```csharp
7979
static void Main(string[] args) {
8080
var options = new Options();
8181
if (CommandLine.Parser.Default.ParseArguments(args, options)) {
82-
// Consume values here
82+
// Values are available here
8383
if (options.Verbose) Console.WriteLine("Filename: {0}", options.InputFile);
8484
}
8585
}

0 commit comments

Comments
 (0)