Correct a typo in model-many.Rmd (#647)

This commit is contained in:
Yiming (Paul) Li 2018-06-20 04:07:17 -05:00 committed by Hadley Wickham
parent e8c1dbb428
commit 44f3e50fdf
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ df %>%
unnest()
```
(If you find yourself using this pattern a lot, make sure to check out `tidyr:separate_rows()` which is a wrapper around this common pattern).
(If you find yourself using this pattern a lot, make sure to check out `tidyr::separate_rows()` which is a wrapper around this common pattern).
Another example of this pattern is using the `map()`, `map2()`, `pmap()` from purrr. For example, we could take the final example from [Invoking different functions] and rewrite it to use `mutate()`: