Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
predominant committed Nov 30, 2010
1 parent 93a46cd commit 348a7a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cake/libs/controller/components/cookie.php
Expand Up @@ -174,7 +174,7 @@ function startup() {
/**
* Write a value to the $_COOKIE[$key];
*
* Optional [Name.], reguired key, optional $value, optional $encrypt, optional $expires
* Optional [Name.], required key, optional $value, optional $encrypt, optional $expires
* $this->Cookie->write('[Name.]key, $value);
*
* By default all values are encrypted.
Expand Down Expand Up @@ -225,7 +225,7 @@ function write($key, $value = null, $encrypt = true, $expires = null) {
/**
* Read the value of the $_COOKIE[$key];
*
* Optional [Name.], reguired key
* Optional [Name.], required key
* $this->Cookie->read(Name.key);
*
* @param mixed $key Key of the value to be obtained. If none specified, obtain map key => values
Expand Down Expand Up @@ -260,7 +260,7 @@ function read($key = null) {
/**
* Delete a cookie value
*
* Optional [Name.], reguired key
* Optional [Name.], required key
* $this->Cookie->read('Name.key);
*
* You must use this method before any output is sent to the browser.
Expand Down

0 comments on commit 348a7a2

Please sign in to comment.