From 6215f8b3dba3a73fef891c6c64e083879dc0bcbe Mon Sep 17 00:00:00 2001 From: Michael Kaiser Date: Thu, 14 Feb 2013 14:45:44 +0100 Subject: [PATCH] Fixed a typo in cli options description --- lib/foreman/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/foreman/cli.rb b/lib/foreman/cli.rb index 6bf3461..8ee1d17 100644 --- a/lib/foreman/cli.rb +++ b/lib/foreman/cli.rb @@ -23,7 +23,7 @@ class Foreman::CLI < Thor method_option :env, :type => :string, :aliases => "-e", :desc => "Specify an environment file to load, defaults to .env" method_option :formation, :type => :string, :aliases => "-m", :banner => '"alpha=5,bar=3"' method_option :port, :type => :numeric, :aliases => "-p" - method_option :timeout, :type => :numeric, :aliases => "-t", :desc => "Specify the amount of time (in seconds) processes have to shudown gracefully before receiving a SIGKILL, defaults to 5." + method_option :timeout, :type => :numeric, :aliases => "-t", :desc => "Specify the amount of time (in seconds) processes have to shutdown gracefully before receiving a SIGKILL, defaults to 5." class << self # Hackery. Take the run method away from Thor so that we can redefine it.