Skip to content

Commit

Permalink
Merge pull request #807 from kamui545/master
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
ADmad committed Aug 31, 2012
2 parents 894fc12 + 03f6f04 commit 3e17c7a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/Cake/Log/CakeLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ protected static function _autoConfig() {
* or a string matching the recognized levels, then it will
* be treated log levels. Otherwise it's treated as scope.
* @param string $message Message content to log
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand Down Expand Up @@ -455,7 +455,7 @@ public static function write($type, $message, $scope = array()) {
* Convenience method to log emergency messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -467,7 +467,7 @@ public static function emergency($message, $scope = array()) {
* Convenience method to log alert messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -479,7 +479,7 @@ public static function alert($message, $scope = array()) {
* Convenience method to log critical messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -491,7 +491,7 @@ public static function critical($message, $scope = array()) {
* Convenience method to log error messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -503,7 +503,7 @@ public static function error($message, $scope = array()) {
* Convenience method to log warning messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -515,7 +515,7 @@ public static function warning($message, $scope = array()) {
* Convenience method to log notice messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -527,7 +527,7 @@ public static function notice($message, $scope = array()) {
* Convenience method to log debug messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand All @@ -539,7 +539,7 @@ public static function debug($message, $scope = array()) {
* Convenience method to log info messages
*
* @param string $message log message
* @param string|array $scope The scope(s) a log messge is being created in.
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.
* @return boolean Success
*/
Expand Down

0 comments on commit 3e17c7a

Please sign in to comment.