README.md in log_parser-1.1.0 vs README.md in log_parser-1.1.1

- old
+ new

@@ -16,10 +16,10 @@ $ gem install log_parser ## Usage -The class overs a some methods for scanning through a log `by_message(msg)`, `erors`, `warnings`, `since(datetime)` and `uniq`. +The class offers a some methods for scanning through a log `by_message(msg)`, `erors`, `warnings`, `since(datetime)` and `uniq`. These methods can be chained together to refine your search. For example: ```Ruby log = LogParser::Client.new('some.log') log.errors.by_message('authentication failed').since(1.day.ago)