Skip to content

Commit

Permalink
Update Function-operators.Rmd (#1696)
Browse files Browse the repository at this point in the history
`meomoise()` changed to `memoise()`.
  • Loading branch information
williamlai2 committed Mar 19, 2023
1 parent cf2f6d7 commit 8cdebe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Function-operators.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Think carefully before memoising a function. If the function is not __pure__, i.
## Case study: Creating your own function operators {#fo-case-study}
\index{loops}

`meomoise()` and `safely()` are very useful but also quite complex. In this case study you'll learn how to create your own simpler function operators. Imagine you have a named vector of URLs and you'd like to download each one to disk. That's pretty simple with `walk2()` and `file.download()`:
`memoise()` and `safely()` are very useful but also quite complex. In this case study you'll learn how to create your own simpler function operators. Imagine you have a named vector of URLs and you'd like to download each one to disk. That's pretty simple with `walk2()` and `file.download()`:

```{r}
urls <- c(
Expand Down

0 comments on commit 8cdebe2

Please sign in to comment.