link_tag() not link() in example
diff --git a/user_guide/helpers/html_helper.html b/user_guide/helpers/html_helper.html
index 3b4ffb1..fd92f4d 100644
--- a/user_guide/helpers/html_helper.html
+++ b/user_guide/helpers/html_helper.html
@@ -109,7 +109,7 @@
// <link href="http://site.com/favicon.ico" rel="shortcut icon" type="image/ico" />
<br />
<br />
- echo link('feed', 'alternate', 'application/rss+xml', 'My RSS Feed');<br />
+ echo link_tag('feed', 'alternate', 'application/rss+xml', 'My RSS Feed');<br />
// <link href="http://site.com/feed" rel="alternate" type="application/rss+xml" title="My RSS Feed" /> </code>
<p>Additionally, an associative array can be passed to the link() function for complete control over all attributes and values.</p>
<p><code>