mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove _instance
suffix from command.
I want to streamline the wording around `command`, and not start pondering about instances.
This commit is contained in:
parent
7fa8431c69
commit
d08033f9b5
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ module Rails
|
|||
parse_options_for(command_name)
|
||||
@option_parser.parse! @argv
|
||||
|
||||
if command_instance = command_for(command_name)
|
||||
command_instance.public_send(command_name)
|
||||
if command = command_for(command_name)
|
||||
command.public_send(command_name)
|
||||
else
|
||||
puts @option_parser
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue