Skip to content

Commit

Permalink
docs: fix typo in readme
Browse files Browse the repository at this point in the history
Fixes #484
  • Loading branch information
zbjornson committed Jan 1, 2022
1 parent d00dbd5 commit 18cc6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const gauge = new client.Gauge({
gauge.set({ method: 'GET', statusCode: '200' }, 100);
// 2nd version: Same effect as above
gauge.labels({ method: 'GET', statusCode: '200' }).set(100);
// 3nd version: And again the same effect as above
// 3rd version: And again the same effect as above
gauge.labels('GET', '200').set(100);
```

Expand Down

0 comments on commit 18cc6fa

Please sign in to comment.