Skip to content

Commit

Permalink
Merge pull request #68 from Shopify/readme_changes
Browse files Browse the repository at this point in the history
Minor readme changes
  • Loading branch information
Aruj Parajuli committed Oct 26, 2015
2 parents 50b2496 + 2733994 commit 6dc13a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -87,7 +87,7 @@ StatsD.increment('GoogleBase.insert', 1, sample_rate: 0.1)

#### StatsD.gauge

A gauge is a single numerical value value that tells you the state of the system at a point in time. A good example would be the number of messages in a queue.
A gauge is a single numerical value that tells you the state of the system at a point in time. A good example would be the number of messages in a queue.

``` ruby
StatsD.gauge('GoogleBase.queued', 12, sample_rate: 1.0)
Expand Down Expand Up @@ -269,9 +269,9 @@ RSpec.describe 'Matchers' do
end

it 'will pass if it matches the correct number of times' do
expect {
expect {
2.times do
StatsD.increment('counter')
StatsD.increment('counter')
end
}.to trigger_statsd_increment('counter', times: 2)
end
Expand Down

0 comments on commit 6dc13a1

Please sign in to comment.