diff --git a/README.md b/README.md
index 9c988b07..c1ae9e04 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ fn main() {
"-c --config=[CONFIG] 'Sets a custom config file'
'Sets the input file to use'
[debug]... -d 'Sets the level of debugging information'")
- .subcommand(SubCommand::new("test")
+ .subcommand(SubCommand::with_name("test")
.about("controls testing features")
.version("1.3")
.author("Someone E. ")
@@ -155,7 +155,7 @@ fn main() {
.short("d")
.multiple(true)
.help("Sets the level of debugging information"))
- .subcommand(SubCommand::new("test")
+ .subcommand(SubCommand::with_name("test")
.about("controls testing features")
.version("1.3")
.author("Someone E. ")
@@ -191,7 +191,7 @@ fn main() {
}
}
- // more porgram logic goes here...
+ // more program logic goes here...
}
```