Fix curl::multi_download typo in arrow.qmd (#1443)

Function has an underscore in the name (as used in following code box)
This commit is contained in:
Nick Pullen
2023-04-24 14:26:42 +02:00
committed by GitHub
parent 8c91a43aee
commit 7161152473

View File

@@ -54,7 +54,7 @@ This dataset contains 41,389,465 rows that tell you how many times each book was
The following code will get you a cached copy of the data.
The data is a 9GB CSV file, so it will take some time to download.
I highly recommend using `curl::multidownload()` to get very large files as it's built for exactly this purpose: it gives you a progress bar and it can resume the download if its interrupted.
I highly recommend using `curl::multi_download()` to get very large files as it's built for exactly this purpose: it gives you a progress bar and it can resume the download if its interrupted.
```{r}
#| eval: false