Fixed extra text in img() function description of the userguide
diff --git a/user_guide/helpers/html_helper.html b/user_guide/helpers/html_helper.html
index ab26cbc..e63a449 100644
--- a/user_guide/helpers/html_helper.html
+++ b/user_guide/helpers/html_helper.html
@@ -79,8 +79,7 @@
<code>echo heading('Welcome!', 3);</code>
<p>The above would produce: <h3>Welcome!</h3></p>
<h2>img()</h2>
-<p>Lets you create HTML <img /> tags. The first parameter contains the image source. There is data, the
- second the size of the heading. Example:</p>
+<p>Lets you create HTML <img /> tags. The first parameter contains the image source. Example:</p>
<code>echo img('images/picture.jpg');<br />
// gives <img src="http://site.com/images/picture.jpg" /></code>
<p>There is an optional second parameter that is a TRUE/FALSE value that specifics if the src should have the page specified by $config['index_page'] added to the address it creates. Presumably, this would be if you were using a media controller.</p>