Fix typo.

Fixes #442
This commit is contained in:
hadley 2016-10-03 08:49:34 -05:00
parent 7ef6564f60
commit 55bfde51cc
1 changed files with 1 additions and 1 deletions

View File

@ -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)
)