File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ConsoleApp.Run(args, (string name) => Console.WriteLine($"Hello {name}"));
1717Of course, ConsoleAppFramework has extensibility.
1818
1919``` csharp
20- // Regsiter two commands(use short-name, argument)
20+ // Register two commands(use short-name, argument)
2121// hello -m
2222// sum [x] [y]
2323var app = ConsoleApp .Create (args );
@@ -381,7 +381,7 @@ var app = ConsoleApp.CreateBuilder(args)
381381 .Build ();
382382
383383// Run is shorthand of Create(args).AddRootCommand(rootCommand).Run();
384- // If you want to create simple app, this API is most fast .
384+ // If you want to create simple app, this API is faster .
385385ConsoleApp .Run (args , /* lambda expression */ );
386386
387387// Run<T> is shorthand of Create(args).AddCommands<T>().Run();
@@ -491,7 +491,7 @@ public class MyCommands : ConsoleAppBase, IDisposable
491491 this .logger = logger ;
492492 }
493493
494- // All public methods is registred .
494+ // All public methods is registered .
495495
496496 // Using [RootCommand] attribute will be root-command
497497 [RootCommand ]
You can’t perform that action at this time.
0 commit comments