Skip to content

Commit

Permalink
undo some readme formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
adhityamamallan committed Nov 7, 2023
1 parent d60f0a0 commit a5d0799
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ All options are optional.
For example, here is how you would add a request count metric using `uber-statsd-client`:

```javascript
var app = require("cadence-web");
var createStatsd = require("uber-statsd-client");
var app = require('cadence-web');
var createStatsd = require('uber-statsd-client');
var sdc = createStatsd({
host: "statsd.example.com",
host: 'statsd.example.com',
});

app
.use(async function(ctx, next) {
sdc.increment("http.request");
sdc.increment('http.request');
await next();
})
.init()
Expand Down

0 comments on commit a5d0799

Please sign in to comment.