Skip to content

Commit

Permalink
A couple of small comment changes to fix some slightly broken English.
Browse files Browse the repository at this point in the history
* Fixes a small typo
* Fixes incorrect indefinite article usage
* Fixes small grammatical error
  • Loading branch information
catchamonkey committed Apr 17, 2012
1 parent 6c15897 commit 0b073c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Monolog/Logger.php
Expand Up @@ -37,7 +37,7 @@ class Logger
const INFO = 200;

/**
* Exceptional occurences that are not errors
* Exceptional occurrences that are not errors
*
* Examples: Use of deprecated APIs, poor use of an API,
* undesirable things that are not necessarily wrong.
Expand Down Expand Up @@ -101,7 +101,7 @@ public function getName()
}

/**
* Pushes an handler on the stack.
* Pushes a handler on to the stack.
*
* @param HandlerInterface $handler
*/
Expand All @@ -111,7 +111,7 @@ public function pushHandler(HandlerInterface $handler)
}

/**
* Pops an handler from the stack
* Pops a handler from the stack
*
* @return HandlerInterface
*/
Expand All @@ -124,7 +124,7 @@ public function popHandler()
}

/**
* Adds a processor in the stack.
* Adds a processor on to the stack.
*
* @param callable $callback
*/
Expand Down Expand Up @@ -279,7 +279,7 @@ public static function getLevelName($level)
}

/**
* Checks whether the Logger as a handler that listens on the given level
* Checks whether the Logger has a handler that listens on the given level
*
* @param integer $level
* @return Boolean
Expand Down

0 comments on commit 0b073c8

Please sign in to comment.