pachamaltese commented on a change in pull request #9893: URL: https://github.com/apache/arrow/pull/9893#discussion_r608710862
########## File path: r/R/feather.R ########## @@ -144,17 +144,20 @@ write_feather <- function(x, #' } read_feather <- function(file, col_select = NULL, as_data_frame = TRUE, ...) { if (!inherits(file, "RandomAccessFile")) { - file <- make_readable_file(file) + file <- make_readable_file(file, ...) Review comment: so, I just keep ``` feather.R:#' @param ... additional parameters, passed to [FeatherReader$create()][FeatherReader] ``` or I move to ``` #' @param ... additional parameters, passed to the internal function #' `make_readable_file()` ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org