From 9c236cddda68397daf7f52266372fab18982dc43 Mon Sep 17 00:00:00 2001 From: Noah Landesberg Date: Wed, 20 Jun 2018 04:58:35 -0400 Subject: [PATCH] Update model-many.Rmd (#614) Fixes #598 --- model-many.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model-many.Rmd b/model-many.Rmd index 6afffbd..9ed8827 100644 --- a/model-many.Rmd +++ b/model-many.Rmd @@ -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) )