diff options
author | Vipul A M <vipulnsward@gmail.com> | 2018-05-07 17:51:48 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-07 17:51:48 +0530 |
commit | 92bd822c5460749f1139ae4dd22ea18d21c648f2 (patch) | |
tree | d8623bfa90837acb16582998cde2014c6996533d | |
parent | 9a1b99eb01eab3de4ab5c357058da0ecc38e434b (diff) | |
parent | fe97612141a9926a6ecec38f8cefb7eea1a0c8e5 (diff) | |
download | rails-92bd822c5460749f1139ae4dd22ea18d21c648f2.tar.gz rails-92bd822c5460749f1139ae4dd22ea18d21c648f2.tar.bz2 rails-92bd822c5460749f1139ae4dd22ea18d21c648f2.zip |
Merge pull request #32840 from rakio1234/patch-1
Fix output in routing.md [ci skip]
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index 7a83fee617..c309704176 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -1160,7 +1160,7 @@ class Video < ApplicationRecord end video = Video.find_by(identifier: "Roman-Holiday") -edit_videos_path(video) # => "/videos/Roman-Holiday" +edit_videos_path(video) # => "/videos/Roman-Holiday/edit" ``` Inspecting and Testing Routes |