added reduce_double_slashes() and trim_slashes() to docs
diff --git a/user_guide/helpers/string_helper.html b/user_guide/helpers/string_helper.html
index 0858b78..df7e02f 100644
--- a/user_guide/helpers/string_helper.html
+++ b/user_guide/helpers/string_helper.html
@@ -121,10 +121,15 @@
echo repeater($string, 30);</code>
<p>The above would generate 30 newlines.</p>
-
-
-
-
+<h2>reduce_double_slashes()</h2>
+<p>onverts double slashes in a string to a single slash, except those found in http://. Example: </p>
+<code>$string = "http://www.some-site.com//index.php";<br />
+echo reduce_double_slashes($string); // results in "http://www.some-site.com/index.php"</code>
+<h2>trim_slashes()</h2>
+<p>Removes any leading/traling slashes from a string. Example:<br />
+ <br />
+ <code>$string = "/this/that/theother/";<br />
+echo trim_slashes($string); // results in this/that/theother</code></p>
</div>
<!-- END CONTENT -->