From 55bfde51cc98bcc55d1b4f37aeaddf36e1cea5a1 Mon Sep 17 00:00:00 2001 From: hadley Date: Mon, 3 Oct 2016 08:49:34 -0500 Subject: [PATCH] Fix typo. Fixes #442 --- iteration.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iteration.Rmd b/iteration.Rmd index f74fa27..e559892 100644 --- a/iteration.Rmd +++ b/iteration.Rmd @@ -823,7 +823,7 @@ And again, you can use `tibble::tribble()` to make creating these matching pairs ```{r, eval = FALSE} sim <- tribble( ~f, ~params, - "runif", list(min = -1, max = -1), + "runif", list(min = -1, max = 1), "rnorm", list(sd = 5), "rpois", list(lambda = 10) )