fixing typos

This commit is contained in:
Rachman Chavik 2011-10-19 00:06:29 +07:00
parent 95737d7adf
commit 2bb93761cc
18 changed files with 21 additions and 21 deletions

View file

@ -611,7 +611,7 @@ pre {
overflow: auto; overflow: auto;
position: relative; position: relative;
-moz-border-radius: 4px; -moz-border-radius: 4px;
-wekbkit-border-radius: 4px; -webkit-border-radius: 4px;
border-radius: 4px; border-radius: 4px;
} }
.cake-stack-trace a { .cake-stack-trace a {

View file

@ -49,7 +49,7 @@
* The absolute path to the "cake" directory, WITHOUT a trailing DS. * The absolute path to the "cake" directory, WITHOUT a trailing DS.
* *
* Un-comment this line to specify a fixed path to CakePHP. * Un-comment this line to specify a fixed path to CakePHP.
* This should point at the directory containg `Cake`. * This should point at the directory containing `Cake`.
* *
* For ease of development CakePHP uses PHP's include_path. If you * For ease of development CakePHP uses PHP's include_path. If you
* cannot modify your include_path set this value. * cannot modify your include_path set this value.

View file

@ -3,7 +3,7 @@
* Requests collector. * Requests collector.
* *
* This file collects requests if: * This file collects requests if:
* - no mod_rewrite is avilable or .htaccess files are not supported * - no mod_rewrite is available or .htaccess files are not supported
* - requires App.baseUrl to be uncommented in app/Config/core.php * - requires App.baseUrl to be uncommented in app/Config/core.php
* - app/webroot is not set as a document root. * - app/webroot is not set as a document root.
* *

View file

@ -96,7 +96,7 @@ class Cache {
* *
* - `duration` Specify how long items in this cache configuration last. * - `duration` Specify how long items in this cache configuration last.
* - `prefix` Prefix appended to all entries. Good for when you need to share a keyspace * - `prefix` Prefix appended to all entries. Good for when you need to share a keyspace
* with either another cache config or annother application. * with either another cache config or another application.
* - `probability` Probability of hitting a cache gc cleanup. Setting to 0 will disable * - `probability` Probability of hitting a cache gc cleanup. Setting to 0 will disable
* cache::gc from ever being called automatically. * cache::gc from ever being called automatically.
* - `servers' Used by memcache. Give the address of the memcached servers to use. * - `servers' Used by memcache. Give the address of the memcached servers to use.

View file

@ -49,7 +49,7 @@
* The absolute path to the "cake" directory, WITHOUT a trailing DS. * The absolute path to the "cake" directory, WITHOUT a trailing DS.
* *
* Un-comment this line to specify a fixed path to CakePHP. * Un-comment this line to specify a fixed path to CakePHP.
* This should point at the directory containg `Cake`. * This should point at the directory containing `Cake`.
* *
* For ease of development CakePHP uses PHP's include_path. If you * For ease of development CakePHP uses PHP's include_path. If you
* cannot modify your include_path set this value. * cannot modify your include_path set this value.

View file

@ -18,7 +18,7 @@
App::uses('ComponentCollection', 'Controller'); App::uses('ComponentCollection', 'Controller');
/** /**
* Base class for an individual Component. Components provide resuable bits of * Base class for an individual Component. Components provide reusable bits of
* controller logic that can be composed into a controller. Components also * controller logic that can be composed into a controller. Components also
* provide request life-cycle callbacks for injecting logic at specific points. * provide request life-cycle callbacks for injecting logic at specific points.
* *

View file

@ -536,7 +536,7 @@ class AuthComponent extends Component {
/** /**
* Get the current user from the session. * Get the current user from the session.
* *
* @param string $key field to retrive. Leave null to get entire User record * @param string $key field to retrieve. Leave null to get entire User record
* @return mixed User record. or null if no user is logged in. * @return mixed User record. or null if no user is logged in.
* @link http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#accessing-the-logged-in-user * @link http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#accessing-the-logged-in-user
*/ */

View file

@ -212,7 +212,7 @@ class Scaffold {
* Saves or updates the scaffolded model. * Saves or updates the scaffolded model.
* *
* @param CakeRequest $request Request Object for scaffolding * @param CakeRequest $request Request Object for scaffolding
* @param string $action add or edt * @param string $action add or edit
* @return mixed Success on save/update, add/edit form if data is empty or error if save or update fails * @return mixed Success on save/update, add/edit form if data is empty or error if save or update fails
* @throws NotFoundException * @throws NotFoundException
*/ */

View file

@ -194,7 +194,7 @@ class CakePlugin {
} }
/** /**
* Retruns true if the plugin $plugin is already loaded * Returns true if the plugin $plugin is already loaded
* If plugin is null, it will return a list of all loaded plugins * If plugin is null, it will return a list of all loaded plugins
* *
* @param string $plugin * @param string $plugin

View file

@ -2,7 +2,7 @@
/** /**
* BehaviorCollection * BehaviorCollection
* *
* Provides managment and interface for interacting with collections of behaviors. * Provides management and interface for interacting with collections of behaviors.
* *
* PHP 5 * PHP 5
* *

View file

@ -722,7 +722,7 @@ class Model extends Object {
} }
/** /**
* Handles the lazy loading of model associations by lookin in the association arrays for the requested variable * Handles the lazy loading of model associations by looking in the association arrays for the requested variable
* *
* @param string $name variable tested for existance in class * @param string $name variable tested for existance in class
* @return boolean true if the variable exists (if is a not loaded model association it will be created), false otherwise * @return boolean true if the variable exists (if is a not loaded model association it will be created), false otherwise
@ -3032,7 +3032,7 @@ class Model extends Object {
* Runs validation for hasAndBelongsToMany associations that have 'with' keys * Runs validation for hasAndBelongsToMany associations that have 'with' keys
* set. And data in the set() data set. * set. And data in the set() data set.
* *
* @param array $options Array of options to use on Valdation of with models * @param array $options Array of options to use on Validation of with models
* @return boolean Failure of validation on with models. * @return boolean Failure of validation on with models.
* @see Model::validates() * @see Model::validates()
*/ */

View file

@ -23,7 +23,7 @@
* Model behavior base class. * Model behavior base class.
* *
* Defines the Behavior interface, and contains common model interaction functionality. Behaviors * Defines the Behavior interface, and contains common model interaction functionality. Behaviors
* allow you to simulate mixins, and create resuable blocks of application logic, that can be reused across * allow you to simulate mixins, and create reusable blocks of application logic, that can be reused across
* several models. Behaviors also provide a way to hook into model callbacks and augment their behavior. * several models. Behaviors also provide a way to hook into model callbacks and augment their behavior.
* *
* ### Mixin methods * ### Mixin methods

View file

@ -1,6 +1,6 @@
<?php <?php
/** /**
* Dispatcher takes the URL information, parses it for paramters and * Dispatcher takes the URL information, parses it for parameters and
* tells the involved controllers what to do. * tells the involved controllers what to do.
* *
* This is the heart of Cake's operation. * This is the heart of Cake's operation.

View file

@ -144,7 +144,7 @@ class Router {
protected static $_requests = array(); protected static $_requests = array();
/** /**
* Initial state is popualated the first time reload() is called which is at the bottom * Initial state is populated the first time reload() is called which is at the bottom
* of this file. This is a cheat as get_class_vars() returns the value of static vars even if they * of this file. This is a cheat as get_class_vars() returns the value of static vars even if they
* have changed. * have changed.
* *

View file

@ -1,6 +1,6 @@
<?php <?php
/** /**
* A class to contain test cases and run them with shered fixtures * A class to contain test cases and run them with shared fixtures
* *
* PHP 5 * PHP 5
* *

View file

@ -204,7 +204,7 @@ class Debugger {
* @param integer $line Line that triggered the error * @param integer $line Line that triggered the error
* @param array $context Context * @param array $context Context
* @return boolean true if error was handled * @return boolean true if error was handled
* @deprecated This function is supersceeded by Debugger::outputError() * @deprecated This function is superseded by Debugger::outputError()
*/ */
public static function showError($code, $description, $file = null, $line = null, $context = null) { public static function showError($code, $description, $file = null, $line = null, $context = null) {
$_this = Debugger::getInstance(); $_this = Debugger::getInstance();

View file

@ -255,7 +255,7 @@ class String {
/** /**
* Cleans up a String::insert() formated string with given $options depending on the 'clean' key in * Cleans up a String::insert() formated string with given $options depending on the 'clean' key in
* $options. The default method used is text but html is also available. The goal of this function * $options. The default method used is text but html is also available. The goal of this function
* is to replace all whitespace and uneeded markup around placeholders that did not get replaced * is to replace all whitespace and unneeded markup around placeholders that did not get replaced
* by String::insert(). * by String::insert().
* *
* @param string $str * @param string $str

View file

@ -522,7 +522,7 @@ class Validation {
* Valid Options * Valid Options
* *
* - in => provide a list of choices that selections must be made from * - in => provide a list of choices that selections must be made from
* - max => maximun number of non-zero choices that can be made * - max => maximum number of non-zero choices that can be made
* - min => minimum number of non-zero choices that can be made * - min => minimum number of non-zero choices that can be made
* *
* @param mixed $check Value to check * @param mixed $check Value to check
@ -556,7 +556,7 @@ class Validation {
* Checks if a value is numeric. * Checks if a value is numeric.
* *
* @param string $check Value to check * @param string $check Value to check
* @return boolean Succcess * @return boolean Success
*/ */
public static function numeric($check) { public static function numeric($check) {
return is_numeric($check); return is_numeric($check);
@ -715,7 +715,7 @@ class Validation {
* *
* @param string $check Value to check * @param string $check Value to check
* @param array $list List to check against * @param array $list List to check against
* @return boolean Succcess * @return boolean Success
*/ */
public static function inList($check, $list) { public static function inList($check, $list) {
return in_array($check, $list); return in_array($check, $list);