Skip to content

Commit 2bb9376

Browse files
committed
fixing typos
1 parent 95737d7 commit 2bb9376

18 files changed

Lines changed: 21 additions & 21 deletions

File tree

app/webroot/css/cake.generic.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ pre {
611611
overflow: auto;
612612
position: relative;
613613
-moz-border-radius: 4px;
614-
-wekbkit-border-radius: 4px;
614+
-webkit-border-radius: 4px;
615615
border-radius: 4px;
616616
}
617617
.cake-stack-trace a {

app/webroot/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* The absolute path to the "cake" directory, WITHOUT a trailing DS.
5050
*
5151
* Un-comment this line to specify a fixed path to CakePHP.
52-
* This should point at the directory containg `Cake`.
52+
* This should point at the directory containing `Cake`.
5353
*
5454
* For ease of development CakePHP uses PHP's include_path. If you
5555
* cannot modify your include_path set this value.

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Requests collector.
44
*
55
* This file collects requests if:
6-
* - no mod_rewrite is avilable or .htaccess files are not supported
6+
* - no mod_rewrite is available or .htaccess files are not supported
77
* - requires App.baseUrl to be uncommented in app/Config/core.php
88
* - app/webroot is not set as a document root.
99
*

lib/Cake/Cache/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class Cache {
9696
*
9797
* - `duration` Specify how long items in this cache configuration last.
9898
* - `prefix` Prefix appended to all entries. Good for when you need to share a keyspace
99-
* with either another cache config or annother application.
99+
* with either another cache config or another application.
100100
* - `probability` Probability of hitting a cache gc cleanup. Setting to 0 will disable
101101
* cache::gc from ever being called automatically.
102102
* - `servers' Used by memcache. Give the address of the memcached servers to use.

lib/Cake/Console/Templates/skel/webroot/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* The absolute path to the "cake" directory, WITHOUT a trailing DS.
5050
*
5151
* Un-comment this line to specify a fixed path to CakePHP.
52-
* This should point at the directory containg `Cake`.
52+
* This should point at the directory containing `Cake`.
5353
*
5454
* For ease of development CakePHP uses PHP's include_path. If you
5555
* cannot modify your include_path set this value.

lib/Cake/Controller/Component.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
App::uses('ComponentCollection', 'Controller');
1919

2020
/**
21-
* Base class for an individual Component. Components provide resuable bits of
21+
* Base class for an individual Component. Components provide reusable bits of
2222
* controller logic that can be composed into a controller. Components also
2323
* provide request life-cycle callbacks for injecting logic at specific points.
2424
*

lib/Cake/Controller/Component/AuthComponent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ public function logout() {
536536
/**
537537
* Get the current user from the session.
538538
*
539-
* @param string $key field to retrive. Leave null to get entire User record
539+
* @param string $key field to retrieve. Leave null to get entire User record
540540
* @return mixed User record. or null if no user is logged in.
541541
* @link http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#accessing-the-logged-in-user
542542
*/

lib/Cake/Controller/Scaffold.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ protected function _scaffoldForm($action = 'edit') {
212212
* Saves or updates the scaffolded model.
213213
*
214214
* @param CakeRequest $request Request Object for scaffolding
215-
* @param string $action add or edt
215+
* @param string $action add or edit
216216
* @return mixed Success on save/update, add/edit form if data is empty or error if save or update fails
217217
* @throws NotFoundException
218218
*/

lib/Cake/Core/CakePlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public static function routes($plugin = null) {
194194
}
195195

196196
/**
197-
* Retruns true if the plugin $plugin is already loaded
197+
* Returns true if the plugin $plugin is already loaded
198198
* If plugin is null, it will return a list of all loaded plugins
199199
*
200200
* @param string $plugin

lib/Cake/Model/BehaviorCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* BehaviorCollection
44
*
5-
* Provides managment and interface for interacting with collections of behaviors.
5+
* Provides management and interface for interacting with collections of behaviors.
66
*
77
* PHP 5
88
*

0 commit comments

Comments
 (0)