Index: trunk/extensions/Validator/includes/manipulations/ParamManipulationFunctions.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | * |
30 | 30 | * @since 0.4.2 |
31 | 31 | * |
32 | | - * You can provide an array with function names or pass each function name as a seperate argument. |
| 32 | + * You can provide an array with function names or pass each function name as a separate argument. |
33 | 33 | */ |
34 | 34 | public function __construct() { |
35 | 35 | parent::__construct(); |
Index: trunk/extensions/Validator/includes/manipulations/ParamManipulationBoolean.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | * @since 0.4 |
30 | 30 | */ |
31 | 31 | public function doManipulation( &$value, Parameter $parameter, array &$parameters ) { |
32 | | - // When the value defaulted to a booeal, there is no need for this manipulation. |
| 32 | + // When the value defaulted to a boolean, there is no need for this manipulation. |
33 | 33 | if ( !is_bool( $value ) || !$parameter->wasSetToDefault() ) { |
34 | 34 | $value = in_array( $value, array( 'yes', 'on' ) ); |
35 | 35 | } |