diff options
author | Derek Allard <derek.allard@ellislab.com> | 2009-09-16 10:26:33 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2009-09-16 10:26:33 +0200 |
commit | 6f7b0aa1151d493e7d8d55ef4a80a2032510b388 (patch) | |
tree | 77c436a7f59eee76c5cb7f4ddedb29f1d257817a /user_guide/helpers/url_helper.html | |
parent | 928158bf3a308330ab6518ff0d149d4585d7f38f (diff) |
some user guide corrections in code examples
a minor grammar tweak
Diffstat (limited to 'user_guide/helpers/url_helper.html')
-rw-r--r-- | user_guide/helpers/url_helper.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/helpers/url_helper.html b/user_guide/helpers/url_helper.html index d38f6ff24..e6fe5f2f9 100644 --- a/user_guide/helpers/url_helper.html +++ b/user_guide/helpers/url_helper.html @@ -134,9 +134,9 @@ will be added automatically from the information specified in your config file. <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: <a href="http://example.com/index.php/news/local/123" title="My News">My News</a></p> +<p>Would produce: <a href="http://example.com/index.php/news/local/123" title="News title">My News</a></p> <code>echo anchor('news/local/123', 'My News', array('title' => 'The best news!'));</code> |