Skip to content

Commit

Permalink
fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGreenhill committed Dec 2, 2024
1 parent b0bf7c4 commit fe00bb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/csvwr_overrides.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#' CSVW default dialect
#'
#' The [CSVW Default Dialect specification](https://w3c.github.io/csvw/metadata/#dialect-descriptions)
#' described in [CSV Dialect Description Format](http://dataprotocols.org/csv-dialect/).
#' described in [CSV Dialect Description Format](https://specs.frictionlessdata.io/csv-dialect/).
#'
#' @return a list specifying a default csv dialect
default_dialect <- list(
Expand Down Expand Up @@ -91,7 +91,7 @@ add_dataframe <- function(table, filename, group) {
readr::read_delim(
filename,
trim_ws=TRUE,
skip=dialect$headerRowCount, # causes more problems than it's worth?
skip=dialect$headerRowCount, # causes more problems than it's worth?
col_names=column_names,
col_types=column_types,
lazy=TRUE)
Expand Down

0 comments on commit fe00bb9

Please sign in to comment.