some user guide corrections in code examples
a minor grammar tweak
diff --git a/user_guide/helpers/url_helper.html b/user_guide/helpers/url_helper.html
index d38f6ff..e6fe5f2 100644
--- a/user_guide/helpers/url_helper.html
+++ b/user_guide/helpers/url_helper.html
@@ -134,9 +134,9 @@
 
 <p>Here are some examples:</p>
 
-<code>echo anchor('news/local/123', 'title="My News"');</code>
+<code>echo anchor('news/local/123', 'My News', 'title="News title"');</code>
 
-<p>Would produce: &lt;a href="http://example.com/index.php/news/local/123" title="My News">My News&lt;/a></p>
+<p>Would produce: &lt;a href="http://example.com/index.php/news/local/123" title="News title">My News&lt;/a></p>
 
 <code>echo anchor('news/local/123', 'My News', array('title' => 'The best news!'));</code>