diff options
-rw-r--r-- | user_guide/helpers/cookie_helper.html | 6 |
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>
|