diff options
Diffstat (limited to 'src/main.php')
-rw-r--r-- | src/main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.php b/src/main.php index 60779e5..068263f 100644 --- a/src/main.php +++ b/src/main.php @@ -18,7 +18,7 @@ EOF; $cmd = $argv[1]; $func = "cmd_{$cmd}"; if (!function_exists($func)) { - echo red("command '".$cmd."' is not implement")."\n"; + echo red("command '".$cmd."' is not implemented")."\n"; exit(1); } |