Skip to content

Commit

Permalink
Fixed doc block comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
majna committed Sep 28, 2011
1 parent 08b974d commit 681207e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Scaffold.php
Expand Up @@ -75,7 +75,7 @@ class Scaffold {
public $request;

/**
* valid session.
* Valid session.
*
* @var boolean
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/Cake/Core/App.php
Expand Up @@ -43,7 +43,7 @@
* You can inspect the currently loaded paths using `App::path('Controller')` for example to see loaded
* controller paths.
*
* It is also possible to inspect paths for plugin classes, for instance, to see a plugin's helpers you would call
* It is also possible to inspect paths for plugin classes, for instance, to see a plugin's helpers you would call
* `App::path('View/Helper', 'MyPlugin')`
*
* ### Locating plugins and themes
Expand Down Expand Up @@ -251,7 +251,7 @@ public static function paths() {
*
* `App::build(array('Model' => array('/path/to/models/')), App::RESET); will setup the path as the only valid path for searching models`
*
* `App::build(array('View/Helper' => array('/path/to/helpers/', '/another/path/))); will setup multiple search paths for helpers`
* `App::build(array('View/Helper' => array('/path/to/helpers/', '/another/path/'))); will setup multiple search paths for helpers`
*
* If reset is set to true, all loaded plugins will be forgotten and they will be needed to be loaded again.
*
Expand Down
1 change: 0 additions & 1 deletion lib/Cake/Model/CakeSchema.php
Expand Up @@ -412,7 +412,6 @@ public function generateTable($table, $fields) {
}
$col .= join(', ', $props);
} elseif ($field == 'tableParameters') {
//@todo add charset, collate and engine here
$col = "\t\t'tableParameters' => array(";
$props = array();
foreach ((array)$value as $key => $param) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/View/Helper/PaginatorHelper.php
Expand Up @@ -64,7 +64,7 @@ class PaginatorHelper extends AppHelper {
* - `update` DOM id of the element updated with the results of the AJAX call.
* If this key isn't specified Paginator will use plain HTML links.
* - `paging['paramType']` The type of parameters to use when creating links. Valid options are
* 'querystring', 'named', and 'route'. See PaginatorComponent::$settings for more information.
* 'querystring' and 'named'. See PaginatorComponent::$settings for more information.
* - `convertKeys` - A list of keys in url arrays that should be converted to querysting params
* if paramType == 'querystring'.
*
Expand Down

0 comments on commit 681207e

Please sign in to comment.