From 5f821c955efc72a525c943b0ba8e8b3dc5960c5c Mon Sep 17 00:00:00 2001 From: Mike Schinkel Date: Fri, 1 Dec 2017 04:12:39 -0500 Subject: [PATCH] Fixed typo in README; ->registerComman() -> ->registerCommand(). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3359be7..7cc52ed 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ The basic usage is simple: - ``$options->setHelp()`` adds a general description - ``$options->registerOption()`` adds an option - ``$options->registerArgument()`` adds an argument - - ``$options->registerComman()`` adds a sub command + - ``$options->registerCommand()`` adds a sub command - implement the ```main($options)``` method and do your business logic there - ``$options->getOpts`` lets you access set options - ``$options->getArgs()`` returns the remaining arguments after removing the options