aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/server/server_command.rb
diff options
context:
space:
mode:
authorJonathan Boler <galatians@gmail.com>2018-06-04 12:59:43 -0500
committerJonathan Boler <galatians@gmail.com>2018-06-04 12:59:43 -0500
commit3674ccd444275fd17cc453add398985a43acb056 (patch)
tree08fbd968c6f5a1bb1e18f7aef9555b73d5cdc682 /railties/lib/rails/commands/server/server_command.rb
parente7758b8b68e33ca770fcedec0ae66e636276be08 (diff)
parent187ace068bba7c63c46ee869ac6cc35716f1b7ab (diff)
downloadrails-3674ccd444275fd17cc453add398985a43acb056.tar.gz
rails-3674ccd444275fd17cc453add398985a43acb056.tar.bz2
rails-3674ccd444275fd17cc453add398985a43acb056.zip
Merge branch 'master' of github.com:rails/rails
Diffstat (limited to 'railties/lib/rails/commands/server/server_command.rb')
-rw-r--r--railties/lib/rails/commands/server/server_command.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/commands/server/server_command.rb b/railties/lib/rails/commands/server/server_command.rb
index 77b6c1f65d..5593840c71 100644
--- a/railties/lib/rails/commands/server/server_command.rb
+++ b/railties/lib/rails/commands/server/server_command.rb
@@ -293,10 +293,10 @@ module Rails
Run `rails server --help` for more options.
MSG
else
- suggestions = Rails::Command::Spellchecker.suggest(server, from: RACK_SERVERS)
+ suggestion = Rails::Command::Spellchecker.suggest(server, from: RACK_SERVERS)
<<~MSG
- Could not find server "#{server}". Maybe you meant #{suggestions.inspect}?
+ Could not find server "#{server}". Maybe you meant #{suggestion.inspect}?
Run `rails server --help` for more options.
MSG
end