summaryrefslogtreecommitdiffstats
path: root/user_guide/helpers/cookie_helper.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-01-31 20:58:31 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-01-31 20:58:31 +0100
commit72c459f5c7886e048e8795280f077b04273711f1 (patch)
tree05b13836a61246c1cabe40e4ec95015ad74f0ddd /user_guide/helpers/cookie_helper.html
parent496bda6f644fc87f55e47090d5a29f10eb2e1afa (diff)
discreet vs discrete
Diffstat (limited to 'user_guide/helpers/cookie_helper.html')
-rw-r--r--user_guide/helpers/cookie_helper.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide/helpers/cookie_helper.html b/user_guide/helpers/cookie_helper.html
index e437cb294..543bd9eea 100644
--- a/user_guide/helpers/cookie_helper.html
+++ b/user_guide/helpers/cookie_helper.html
@@ -71,7 +71,7 @@ Cookie Helper
<h2>set_cookie()</h2>
<p>Sets a cookie containing the values you specify. There are two ways to pass information this function so that a cookie can be set:
-Array Method, and Discreet Parameters:</p>
+Array Method, and Discrete Parameters:</p>
<h4>Array Method</h4>
@@ -101,7 +101,7 @@ zero the cookie will only last as long as the browser is open.</p>
<p>The path is usually not needed since the function sets a root path.</p>
<p>The prefix is only needed if you need to avoid name collisions with other identically named cookies for your server.</p>
-<h4>Discreet Parameters</h4>
+<h4>Discrete Parameters</h4>
<p>If you prefer, you can set the cookie by passing data using individual parameters:</p>
@@ -128,7 +128,7 @@ zero the cookie will only last as long as the browser is open.</p>
<code>delete_cookie("name");</code>
<p>This function is otherwise identical to <dfn>set_cookie()</dfn>, except that it does not have the value and expiration parameters. You can submit an array
-of values in the first parameter or you can set discreet parameters.</p>
+of values in the first parameter or you can set discrete parameters.</p>
<code>delete_cookie($name, $domain, $path, $prefix)</code>