Skip to content

Commit

Permalink
Update Function-operators.Rmd - Typo (#1689)
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesOberreiter committed Mar 19, 2023
1 parent c251362 commit 0614a73
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 @@ -332,7 +332,7 @@ The pipe works well here because I've carefully chosen the function names to yie
`download.file %>% dot_every(10) %>% delay_by(0.1)` versus
`download.file %>% delay_by(0.1) %>% dot_every(10)`.

1. Should you memoise `file.download()`? Why or why not?
1. Should you memoise `download.file()`? Why or why not?

1. Create a function operator that reports whenever a file is created or
deleted in the working directory, using `dir()` and `setdiff()`. What other
Expand Down

0 comments on commit 0614a73

Please sign in to comment.