diff options
author | Derek Jones <derek.jones@ellislab.com> | 2007-07-12 15:45:36 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2007-07-12 15:45:36 +0200 |
commit | aa8dc3c191318f261bc43a99e01540231b15e11b (patch) | |
tree | 328cf10eb67f0eb52b51d6bf351209e6cb73bfa1 /user_guide/helpers | |
parent | 3f2fc0d5a9aa13209dd4ec1175a4ee2bc4172408 (diff) |
spelling corrections
Diffstat (limited to 'user_guide/helpers')
-rw-r--r-- | user_guide/helpers/string_helper.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/helpers/string_helper.html b/user_guide/helpers/string_helper.html index df7e02ffa..9c3adf9ab 100644 --- a/user_guide/helpers/string_helper.html +++ b/user_guide/helpers/string_helper.html @@ -122,11 +122,11 @@ 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>
+<p>Converts 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 />
+<p>Removes any leading/trailing slashes from a string. Example:<br />
<br />
<code>$string = "/this/that/theother/";<br />
echo trim_slashes($string); // results in this/that/theother</code></p>
|