aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-04-05 10:55:13 +0200
committerYves Senn <yves.senn@gmail.com>2015-04-05 10:55:13 +0200
commit0eab204c0ec76903fa4b43aecae502f51d5a9c55 (patch)
treecb540dc094ec4065e2ccf0d9d878d0925fcf7cf6 /guides/source
parent56e0723c3dd8e8fd0dc48d3731282df14abd3344 (diff)
parente2d9e85368d1e049c55057fcf91aa036086c649a (diff)
downloadrails-0eab204c0ec76903fa4b43aecae502f51d5a9c55.tar.gz
rails-0eab204c0ec76903fa4b43aecae502f51d5a9c55.tar.bz2
rails-0eab204c0ec76903fa4b43aecae502f51d5a9c55.zip
Merge pull request #19644 from y-yagi/auto_discovery_link_tag_doc
correct output of auto_discovery_link_tag [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/action_view_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index 71f3f8882c..02ef32d66e 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -408,7 +408,7 @@ Returns a link tag that browsers and feed readers can use to auto-detect an RSS
```ruby
auto_discovery_link_tag(:rss, "http://www.example.com/feed.rss", { title: "RSS Feed" }) # =>
- <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://www.example.com/feed" />
+ <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://www.example.com/feed.rss" />
```
#### image_path