doc fixes
diff --git a/user_guide/general/helpers.html b/user_guide/general/helpers.html
index 063ef72..5569d98 100644
--- a/user_guide/general/helpers.html
+++ b/user_guide/general/helpers.html
@@ -69,8 +69,7 @@
 <p>CodeIgniter does not load Helper Files by default, so the first step in using

 a Helper is to load it.  Once loaded, it becomes globally available in your <a href="../general/controllers.html">controller</a> and <a href="../general/views.html">views</a>.</p>

 

-<p>Helpers are typically stored in your <dfn>system/helpers</dfn> directory.  Alternately you can create a folder called <kbd>helpers</kbd> inside

-your <kbd>application</kbd> folder and store them there.  CodeIgniter will look first in your <dfn>system/application/helpers</dfn>

+<p>Helpers are typically stored in your <dfn>system/helpers</dfn>, or <dfn>system/application/helpers </dfn>directory.    CodeIgniter will look first in your <dfn>system/application/helpers</dfn>

 directory.  If the directory does not exist or the specified helper is not located there CI will instead look in your global

 <dfn>system/helpers</dfn> folder.</p>

 

@@ -149,7 +148,7 @@
 function random_element($array)<br />

 {<br />

 &nbsp;&nbsp;&nbsp;&nbsp;shuffle($array);<br />

-&nbsp;&nbsp;&nbsp;&nbsp;return array_pop();<br />

+&nbsp;&nbsp;&nbsp;&nbsp;return array_pop($array);<br />

 }<br />

 </code>