diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2019-03-11 14:42:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 14:42:15 +0100 |
commit | 2259b486f173e3259a9c3871803b6aecdd74b81f (patch) | |
tree | 95921aff05d50277339696bf1838e6d518acae0a /railties/lib/rails | |
parent | 6ebd2e6d888259a5ef5a47da398840969d24a9cc (diff) | |
parent | 4cdc93a1e449d8c81d3172f03adbd4288024883c (diff) | |
download | rails-2259b486f173e3259a9c3871803b6aecdd74b81f.tar.gz rails-2259b486f173e3259a9c3871803b6aecdd74b81f.tar.bz2 rails-2259b486f173e3259a9c3871803b6aecdd74b81f.zip |
Merge pull request #35569 from prathamesh-sonpatki/env-vars
Mention `environment variable` instead of just `environment`
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/commands/server/server_command.rb | 4 |
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 74adc967e5..a218393d59 100644 --- a/railties/lib/rails/commands/server/server_command.rb +++ b/railties/lib/rails/commands/server/server_command.rb @@ -221,8 +221,8 @@ module Rails if ENV["HOST"] && !ENV["BINDING"] ActiveSupport::Deprecation.warn(<<-MSG.squish) - Using the `HOST` environment to specify the IP is deprecated and will be removed in Rails 6.1. - Please use `BINDING` environment instead. + Using the `HOST` environment variable to specify the IP is deprecated and will be removed in Rails 6.1. + Please use `BINDING` environment variable instead. MSG return ENV["HOST"] |