Closed jimbrig closed 1 month ago
req_perform_sequential()
In [req_perform_sequential()](), the paths argument says:
paths
"An optional list of paths, if you want to download the request bodies to disks. If supplied, must be the same length as reqs."
However, this is slightly misleading as if you use an actual list() of paths you get:
list()
> resps <- httr2::req_perform_sequential(reqs, paths) Error in `check_paths()`: ! `paths` must be a character vector, not a list.
Therefore I'd recommend changing list to vector in the roxygen.
list
vector
req_perform_sequential()
documentationIn [req_perform_sequential()](), the
paths
argument says:However, this is slightly misleading as if you use an actual
list()
of paths you get:Therefore I'd recommend changing
list
tovector
in the roxygen.