summaryrefslogtreecommitdiff
path: root/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/3rdParty/PhpShell/PHP/Shell/Commands.php')
-rw-r--r--framework/3rdParty/PhpShell/PHP/Shell/Commands.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/3rdParty/PhpShell/PHP/Shell/Commands.php b/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
index 5a5e7e9b..3d4bf5b2 100644
--- a/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
+++ b/framework/3rdParty/PhpShell/PHP/Shell/Commands.php
@@ -3,14 +3,14 @@
/**
* Commands for the PHP_Shell
*
-* Extensions can register their own commands for the shell like the
+* Extensions can register their own commands for the shell like the
* InlineHelp Extension which provides inline help for all functions
*
-* It uses the pattern '? <string>' to catch the cmdline strings.
+* It uses the pattern '? <string>' to catch the cmdline strings.
*
-* registerCommand() should be called by the extensions in the register()
+* registerCommand() should be called by the extensions in the register()
* method. Its parameters are
-* - the regex which matches the command
+* - the regex which matches the command
* - the object and the method to call if the command is matched
* - the human readable command string and the description for the help
*/
@@ -23,7 +23,7 @@ class PHP_Shell_Commands {
static protected $instance;
/**
- * registered commands
+ * registered commands
*
* array('quit' => ... )
*