README.md in l2meter-0.9.0 vs README.md in l2meter-0.9.1
- old
+ new
@@ -86,11 +86,11 @@
```
## Contexted logging
Sometimes you want another copy of the logger with a specific context on it.
-You can created one like so:
+You can create one like so:
```ruby
logger = Metrics.context(:super_worker, username: "joe")
SuperWorker.new(logger: logger).run # => super-worker username=joe some-other=superworker-output
@@ -229,12 +229,12 @@
Metrics.silence &example
end
end
```
-Note that this code will only silence logger in the current thread. It'll
-still produce ouput if you fire up a new thread. To silence it completely,
-use `disable!` method, like so:
+Note that this code will only silence logger in the current thread. It'll still
+produce output if you fire up a new thread. To silence it completely, use
+`disable!` method, like so:
```ruby
# spec/spec_helper.rb
Metrics.disable!
```