We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 039a105 commit ecb3bd1Copy full SHA for ecb3bd1
docs/How-To.md
@@ -35,7 +35,7 @@ The following command lines will be equivalent:
35
Commands can have child commands, often called verbs, and these can nest as many levels as you like. You can add a subcommand like this:
36
37
```csharp
38
-var parent = RootCommand("parent");
+var parent = new RootCommand("parent");
39
var child = new Command("child");
40
parent.Add(child);
41
var grandchild = new Command("grandchild");
0 commit comments