Skip to content

Commit

Permalink
Fix typos (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
KNnut authored Apr 4, 2024
1 parent 87bf15d commit eb244d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/import.R
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
#' class(import(csv_file, setclass = "tibble", data.table = TRUE))
#'
#' ## the default import class can be set with options(rio.import.class = "data.table")
#' ## option(rio.import.class = "tibble"), or option(rio.import.class = "arrow")
#' ## options(rio.import.class = "tibble"), or options(rio.import.class = "arrow")
#' @seealso [import_list()], [characterize()], [gather_attrs()], [export()], [convert()]
#' @export
import <- function(file, format, setclass = getOption("rio.import.class", "data.frame"), which, ...) {
Expand Down
2 changes: 1 addition & 1 deletion man/import.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vignettes/remap.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Parameters that the underlying function do not recognize are silently ignored by
import("example.xlsx", sheet = "iris", n_max = 10, pizza = "pineapple")
```

If you don't like this behavior, please change the option `rio.ignoreunusedargs` to `FALSE`, i.e. `option(rio.ignoreunusedargs = FALSE)`.
If you don't like this behavior, please change the option `rio.ignoreunusedargs` to `FALSE`, i.e. `options(rio.ignoreunusedargs = FALSE)`.

```r
options(rio.ignoreunusedargs = FALSE)
Expand Down

0 comments on commit eb244d1

Please sign in to comment.