Skip to content

Commit

Permalink
MDoc fixes for #108 (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
toxicafunk authored Jan 4, 2022
1 parent 685d6ff commit 69b4a4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/essentials/statsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Each of them takes a `Client` as a parameter but
also provides constructors with default values for each such that:

```scala mdoc:silent
Client() == Client(5, 5000, 100, None, None)
Client() == Client(5, 5000L, 100, None, None, None)
```

The `Client` constructors return a `ZManaged`. You can create your own specific client
Expand All @@ -193,7 +193,7 @@ by reusing the default client constructors like this:
or you can just use one of the custom constructors that wrap this process:

```scala mdoc:silent
StatsDClient() == StatsDClient(5, 5000, 100, None, None)
StatsDClient() == StatsDClient(5, 5000L, 100, None, None, None)
```

The first two parameters (`bufferSize` and `timeout`) define how to aggregate each
Expand Down

0 comments on commit 69b4a4f

Please sign in to comment.