Skip to content

Commit

Permalink
more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
antograssiot committed Jul 26, 2014
1 parent ac1d2b9 commit b4d4a9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Core/Plugin.php
Expand Up @@ -41,7 +41,7 @@ class Plugin {

/**
* Loads a plugin and optionally loads bootstrapping,
* routing files or runs a initialization function.
* routing files or runs an initialization function.
*
* Plugins only need to be loaded if you want bootstrapping/routes/cli commands to
* be exposed. If your plugin does not expose any of these features you do not need
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Query.php
Expand Up @@ -1333,7 +1333,7 @@ public function type() {
* $expression = $query->newExpression('Table.column = Table2.column'); // Return a raw SQL expression
* }}}
*
* @param mixed $rawExpression A string, array or anything you want wrapped in a expression object
* @param mixed $rawExpression A string, array or anything you want wrapped in an expression object
* @return \Cake\Database\QueryExpression
*/
public function newExpr($rawExpression = null) {
Expand Down
2 changes: 1 addition & 1 deletion src/ORM/Association/ExternalAssociationTrait.php
Expand Up @@ -19,7 +19,7 @@

/**
* Represents a type of association that that needs to be recovered by performing
* a extra query.
* an extra query.
*/
trait ExternalAssociationTrait {

Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/FormHelper.php
Expand Up @@ -1239,7 +1239,7 @@ public function checkbox($fieldName, array $options = []) {
* - `hiddenField` - boolean to indicate if you want the results of radio() to include
* a hidden input with a value of ''. This is useful for creating radio sets that non-continuous
* - `disabled` - Set to `true` or `disabled` to disable all the radio buttons.
* - `empty` - Set to `true` to create a input with the value '' as the first option. When `true`
* - `empty` - Set to `true` to create an input with the value '' as the first option. When `true`
* the radio label will be 'empty'. Set this option to a string to control the label value.
*
* @param string $fieldName Name of a field, like this "Modelname.fieldname"
Expand Down

0 comments on commit b4d4a9a

Please sign in to comment.