diff --git a/railties/lib/rails/commands/console.rb b/railties/lib/rails/commands/console.rb index c926620b332248a7393740d9580e448f6af1dbbf..96ced3c2f9622e99c126c441e0764390870a795f 100644 --- a/railties/lib/rails/commands/console.rb +++ b/railties/lib/rails/commands/console.rb @@ -14,7 +14,7 @@ def parse_arguments(arguments) OptionParser.new do |opt| opt.banner = "Usage: rails console [environment] [options]" - opt.on('-s', '--sandbox', 'Rollbacks database modifications on exit.') { |v| options[:sandbox] = v } + opt.on('-s', '--sandbox', 'Rollback database modifications on exit.') { |v| options[:sandbox] = v } opt.on("-e", "--environment=name", String, "Specifies the environment to run this console under (test/development/production).", "Default: development") { |v| options[:environment] = v.strip }