Skip to content

Commit fe523dd

Browse files
authored
Update ReadMe.md
1 parent 39e6758 commit fe523dd

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
@@ -17,7 +17,7 @@ ConsoleApp.Run(args, (string name) => Console.WriteLine($"Hello {name}"));
1717
Of 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]
2323
var 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.
385385
ConsoleApp.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]

0 commit comments

Comments
 (0)