Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/_workloads/sleep.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ _To Draw From A Distribution_
}
```
```hocon
// Sleep the thread for a number of milliseconds chosen from a Poisson distribution with a mean of 30000
// Sleep the thread for a number of milliseconds chosen from a Poisson distribution with a mean of 30000.001
{
name = "sleep"
distribution = "poisson"
mean = 30000
mean = 30000.001
}
```
```hocon
// Sleep the thread for a number of milliseconds chosen from a gaussian distribution with a mean of 30000 and standard deviation of 1000
// Sleep the thread for a number of milliseconds chosen from a gaussian distribution with a mean of 30000.001 and standard deviation of 1000.001
{
name = "sleep"
distribution = "gaussian"
mean = 30000
std = 1000
mean = 30000.001
std = 1000.001
}
```
```