diff options
author | Jeremy Daer <jeremydaer@gmail.com> | 2016-04-11 14:31:08 -0700 |
---|---|---|
committer | Jeremy Daer <jeremydaer@gmail.com> | 2016-04-11 14:31:08 -0700 |
commit | 1a5fdf77122e32fc710148ea3e795fedb597ad46 (patch) | |
tree | 66494467e90c156a9e24849f18708b44152e3272 /actionpack/lib/action_dispatch/routing/mapper.rb | |
parent | dbb2c2c7b5255eee75868835b0ebd2c36f6ff0cd (diff) | |
parent | ac027338e4a165273607dccee49a3d38bc836794 (diff) | |
download | rails-1a5fdf77122e32fc710148ea3e795fedb597ad46.tar.gz rails-1a5fdf77122e32fc710148ea3e795fedb597ad46.tar.bz2 rails-1a5fdf77122e32fc710148ea3e795fedb597ad46.zip |
Merge pull request #24492 from vipulnsward/pass-over-warnings
Clean up all Rails 5 warnings. Revert auto-added periods.
Diffstat (limited to 'actionpack/lib/action_dispatch/routing/mapper.rb')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 16b430c36e..5a747b5f17 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -1598,7 +1598,7 @@ module ActionDispatch route_options = options.dup if _path && option_path ActiveSupport::Deprecation.warn <<-eowarn -Specifying strings for both :path and the route path is deprecated. Change things like this: +Specifying strings for both :path and the route path is deprecated. Change things like this: match #{_path.inspect}, :path => #{option_path.inspect} |