Update model-many.Rmd (#614)

Fixes #598
This commit is contained in:
Noah Landesberg 2018-06-20 04:58:35 -04:00 committed by Hadley Wickham
parent 83b0fa9132
commit 9c236cddda
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ Another example of this pattern is using the `map()`, `map2()`, `pmap()` from pu
```{r}
sim <- tribble(
~f, ~params,
"runif", list(min = -1, max = -1),
"runif", list(min = -1, max = 1),
"rnorm", list(sd = 5),
"rpois", list(lambda = 10)
)