diff options
author | Mahmoud <mahmoudsayed0155@gmail.com> | 2018-03-09 09:33:41 +0200 |
---|---|---|
committer | Mahmoud <mahmoudsayed0155@gmail.com> | 2018-03-09 09:33:41 +0200 |
commit | 07ed1c5c877c953d06328df059b61ea19c5d5f82 (patch) | |
tree | 024dfb027a2b350478013a45d16131bc73a836b6 /actionpack/lib/action_dispatch/routing | |
parent | eec723f69ad0e2e957f9c9bca350a6e032c1b58f (diff) | |
download | rails-07ed1c5c877c953d06328df059b61ea19c5d5f82.tar.gz rails-07ed1c5c877c953d06328df059b61ea19c5d5f82.tar.bz2 rails-07ed1c5c877c953d06328df059b61ea19c5d5f82.zip |
Change doc for "polymorphic_path" in polymorphic_routes.rb
The method 'polymorphic_path' is not using 'polymorphic_url'
with `routing_type: :path` anymore in polymorphic_routes.rb
Diffstat (limited to 'actionpack/lib/action_dispatch/routing')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/polymorphic_routes.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb b/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb index 6da869c0c2..e17ccaf986 100644 --- a/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb +++ b/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb @@ -120,8 +120,7 @@ module ActionDispatch opts end - # Returns the path component of a URL for the given record. It uses - # <tt>polymorphic_url</tt> with <tt>routing_type: :path</tt>. + # Returns the path component of a URL for the given record. def polymorphic_path(record_or_hash_or_array, options = {}) if Hash === record_or_hash_or_array options = record_or_hash_or_array.merge(options) |